Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/Trackpad.py
diff options
context:
space:
mode:
authorNat <natcl@hotmail.com>2007-06-28 16:36:33 (GMT)
committer Nat <natcl@hotmail.com>2007-06-28 16:36:33 (GMT)
commit12ff780024aa0b820c15f9c69d5a13c3ab30aadd (patch)
tree7f346ac2f57c65e3009837159ad0a24589ec5dbc /Util/Trackpad.py
parent9769b1a5c89ce87d4f283e782939ee10063f5352 (diff)
show cursor
Diffstat (limited to 'Util/Trackpad.py')
-rw-r--r--Util/Trackpad.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/Trackpad.py b/Util/Trackpad.py
index ea2990d..f46a62c 100644
--- a/Util/Trackpad.py
+++ b/Util/Trackpad.py
@@ -75,7 +75,7 @@ class Trackpad:
def handle_keyPress(self,widget,event):
if KEY_MAP_PIANO.has_key(event.hardware_keycode) and self.buttonPressed == False:
gtk.gdk.Display.warp_pointer(self.display, self.screen, self.screen.get_width() / 2, self.screen.get_height() / 2)
- gtk.gdk.pointer_grab(self.win.window, event_mask = gtk.gdk.POINTER_MOTION_MASK, cursor = self.invisible_cursor)
+ gtk.gdk.pointer_grab(self.win.window, event_mask = gtk.gdk.POINTER_MOTION_MASK)#, cursor = self.invisible_cursor)
self.buttonPressed = True
self.first_x = self.screen.get_width() / 2
self.first_y = self.screen.get_height() / 2