Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/keyhandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/keyhandler.py')
-rw-r--r--shell/view/keyhandler.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/view/keyhandler.py b/shell/view/keyhandler.py
index 3564974..870adb9 100644
--- a/shell/view/keyhandler.py
+++ b/shell/view/keyhandler.py
@@ -127,6 +127,10 @@ class KeyHandler(object):
def handle_keyboard_brightness(self):
self._hw_manager.toggle_keyboard_brightness()
+ def handle_home(self):
+ # FIXME: finish alt+tab support
+ pass
+
def _key_pressed_cb(self, grabber, key):
action = _actions_table[key]
method = getattr(self, 'handle_' + action)