summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-05-13 08:44:00 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-05-13 08:44:00 +0000
commita797222ec2a45a132408cff09df6d34296ea879e (patch)
tree2e660ec5f7b22cce9433ef0ceddfb3e6c86f41ee
parent31bd06846b1fdc242f85c9af5f6c99b9ab7e6630 (diff)
downloadgdk-pixbuf-a797222ec2a45a132408cff09df6d34296ea879e.tar.gz
Bug 496958 - Wacom Bamboo Doesn't Function with GTK apps in Win32
2008-05-13 Tor Lillqvist <tml@novell.com> 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=/branches/gtk-2-12/; revision=20102
-rw-r--r--ChangeLog9
-rw-r--r--gdk/win32/gdkinput-win32.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 37a2b0e5b..ca757e382 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-05-13 Tor Lillqvist <tml@novell.com>
+
+ 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 tablet Wacom behaviour in GIMP
+ and Inkscape.
+
2008-05-12 Tor Lillqvist <tml@novell.com>
Bug 532558 - Cannot build dll when using separate builddir
diff --git a/gdk/win32/gdkinput-win32.c b/gdk/win32/gdkinput-win32.c
index 464854480..44472dbfa 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;