diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-09 22:32:13 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-09 22:32:13 +0100 |
commit | 7cabee107798341c6c78632f56518a722ed15f03 (patch) | |
tree | 35c4af9c51a2ea148db4913ad20eec3cb2bfd682 /src | |
parent | 079e56633f700b2a0e0240501d31e4a9e5007a4f (diff) |
acecad: fix blotchy input in Inkscape and the Gimp by not pretending to be the core pointer by default
Diffstat (limited to 'src')
-rw-r--r-- | src/acecad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/acecad.c b/src/acecad.c index 1e4cd02..41caa8c 100644 --- a/src/acecad.c +++ b/src/acecad.c @@ -738,7 +738,7 @@ ReadInput (LocalDevicePtr local) { int x, y, z; int prox, buttons; - int is_core_pointer = 1, is_absolute; + int is_core_pointer = 0, is_absolute; AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private); /*xf86Msg(X_INFO, "ACECAD Tablet Read Input\n");*/ @@ -848,7 +848,7 @@ USBReadInput (LocalDevicePtr local) int report_x, report_y; int prox = priv->acecadOldProximity; int buttons = priv->acecadOldButtons; - int is_core_pointer = 1; + int is_core_pointer = 0; #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0 is_core_pointer = xf86IsCorePointer(local->dev); #endif |