From 93a5db151155dd3bde885750be5a98915f9096fe Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 13 May 2008 08:49:51 +0000 Subject: [PATCH] Bug 496958 - Wacom Bamboo Doesn't Function with GTK apps in Win32 2008-05-13 Tor Lillqvist Bug 496958 - Wacom Bamboo Doesn't Function with GTK apps in Win32 * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Set the "packet rate" of devices to zero instead of 50. This is reported to help significantly with Wacom tablet behaviour in GIMP and Inkscape. Patch from Thomas Bleeker. svn path=/trunk/; revision=20104 --- ChangeLog | 9 +++++++++ gdk/win32/gdkinput-win32.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 612f7e1d97..0fd23ad399 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-05-13 Tor Lillqvist + + Bug 496958 - Wacom Bamboo Doesn't Function with GTK apps in Win32 + + * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Set + the "packet rate" of devices to zero instead of 50. This is + reported to help significantly with Wacom tablet behaviour in GIMP + and Inkscape. Patch from Thomas Bleeker. + 2008-05-12 Richard Hult * gdk/quartz/gdkevents-quartz.c: diff --git a/gdk/win32/gdkinput-win32.c b/gdk/win32/gdkinput-win32.c index 4648544802..44472dbfa0 100644 --- a/gdk/win32/gdkinput-win32.c +++ b/gdk/win32/gdkinput-win32.c @@ -433,7 +433,7 @@ _gdk_input_wintab_init_check (void) lc.lcOptions |= CXO_MESSAGES; lc.lcStatus = 0; lc.lcMsgBase = WT_DEFBASE; - lc.lcPktRate = 50; + lc.lcPktRate = 0; lc.lcPktData = PACKETDATA; lc.lcPktMode = PACKETMODE; lc.lcMoveMask = PACKETDATA;