Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/view/tabbinghandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jarabe/view/tabbinghandler.py')
-rw-r--r--src/jarabe/view/tabbinghandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/view/tabbinghandler.py b/src/jarabe/view/tabbinghandler.py
index bb95c26..c268684 100644
--- a/src/jarabe/view/tabbinghandler.py
+++ b/src/jarabe/view/tabbinghandler.py
@@ -36,10 +36,10 @@ class TabbingHandler(object):
logging.debug('Grabing the input.')
screen = gtk.gdk.screen_get_default()
- window = screen.get_root_window()
+ window = screen.get_root_window()
keyboard_grab_result = gtk.gdk.keyboard_grab(window)
pointer_grab_result = gtk.gdk.pointer_grab(window)
-
+
self._tabbing = (keyboard_grab_result == gtk.gdk.GRAB_SUCCESS and
pointer_grab_result == gtk.gdk.GRAB_SUCCESS)