From: Egbert Eich <e...@suse.com> Worn pens have a non-zero initial pressure and are identifed by this. If any consecutive pressure reading is below the inital pressure reading it was considered as a bug and logged accordingly. This condition however can also be triggered by the user: if the user hits the tablet hard with a fast motion the initial pressure reading might be != 0 while the pen returns back to zero when lifted off gently. Thus don't flag this situation as a bug.
Signed-off-by: Egbert Eich <e...@suse.com> --- src/wcmCommon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wcmCommon.c b/src/wcmCommon.c index 3cb93ee..9b83e72 100644 --- a/src/wcmCommon.c +++ b/src/wcmCommon.c @@ -1074,8 +1074,8 @@ normalizePressure(const WacomDevicePtr priv, const WacomDeviceState *ds) if (p < priv->minPressure) { - LogMessageVerbSigSafe(X_ERROR, 0, - "%s: Pressure %d lower than expected minimum %d. This is a bug.\n", + LogMessageVerbSigSafe(X_INFO, 0, + "%s: Pressure %d lower than expected minimum %d.\n", priv->pInfo->name, ds->pressure, priv->minPressure); p = priv->minPressure; } -- 1.8.1.4 ------------------------------------------------------------------------------ Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime for Android apps. Now with support for Jelly Bean, Bluetooth, Mapview and more. Get your Android app in front of a whole new audience. Start now. http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel