From f36da0e8e45ec62d1963dfba011b3b39df8f7edb Mon Sep 17 00:00:00 2001 From: David-John Willis Date: Mon, 7 Dec 2009 09:50:05 +0000 Subject: xf86-input-tslib: Add patch to stop events being flooded upto to the X server. --- .../xf86-input-tslib/dontfloodevents006.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 recipes/xorg-driver/xf86-input-tslib/dontfloodevents006.patch (limited to 'recipes/xorg-driver/xf86-input-tslib') diff --git a/recipes/xorg-driver/xf86-input-tslib/dontfloodevents006.patch b/recipes/xorg-driver/xf86-input-tslib/dontfloodevents006.patch new file mode 100644 index 0000000000..e989717d3b --- /dev/null +++ b/recipes/xorg-driver/xf86-input-tslib/dontfloodevents006.patch @@ -0,0 +1,22 @@ +Index: xf86-input-tslib-0.0.6/src/tslib.c +=================================================================== +--- xf86-input-tslib-0.0.6.orig/src/tslib.c 2009-11-29 20:03:29.734794324 +0000 ++++ xf86-input-tslib-0.0.6/src/tslib.c 2009-11-29 20:29:24.066794215 +0000 +@@ -205,7 +205,7 @@ + */ + switch (priv->state) { + case BUTTON_EMULATION_OFF : +- if(priv->lastp != samp.pressure) { ++ if(!!priv->lastp != !!samp.pressure) { + priv->lastp = samp.pressure; + xf86PostButtonEvent(local->dev, TRUE, + 1, !!samp.pressure, 0, 2, +@@ -512,7 +512,7 @@ + s = xf86CheckStrOption(dev->commonOptions, "path", NULL); + if (!s) + s = xf86CheckStrOption(dev->commonOptions, "Device", NULL); +- ++ + priv->ts = ts_open(s, 1); + xfree(s); + -- cgit v1.2.3