Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2008-04-29 19:11:47 (GMT)
committer Martin Dengler <martin@martindengler.com>2008-06-17 01:05:13 (GMT)
commit07bddbe8484736217546da0204f9aefde65ec805 (patch)
tree6033c0add8f4868aacade79839158f65039b9583 /src
parent0f53a912018be99022cd8c1ea233bde3738eb1e4 (diff)
fix #4646 - replace/normalize some keyboard shortcuts
Diffstat (limited to 'src')
-rw-r--r--src/view/keyhandler.py25
1 files changed, 12 insertions, 13 deletions
diff --git a/src/view/keyhandler.py b/src/view/keyhandler.py
index 16f5a43..3684299 100644
--- a/src/view/keyhandler.py
+++ b/src/view/keyhandler.py
@@ -41,26 +41,25 @@ _actions_table = {
'F4' : 'zoom_activity',
'F9' : 'brightness_down',
'F10' : 'brightness_up',
- '<ctrl>F9' : 'brightness_min',
- '<ctrl>F10' : 'brightness_max',
+ '<alt>F9' : 'brightness_min',
+ '<alt>F10' : 'brightness_max',
'F11' : 'volume_down',
'F12' : 'volume_up',
- '<ctrl>F11' : 'volume_min',
- '<ctrl>F12' : 'volume_max',
+ '<alt>F11' : 'volume_min',
+ '<alt>F12' : 'volume_max',
'<alt>1' : 'screenshot',
- '<alt>f' : 'frame',
'0x93' : 'frame',
'0xEB' : 'rotate',
- '<alt>r' : 'rotate',
- '<alt>q' : 'quit_emulator',
'<alt>Tab' : 'next_window',
- '<alt>n' : 'next_window',
- '<ctrl><alt>Tab' : 'previous_window',
- '<alt>p' : 'previous_window',
- '<ctrl>Escape' : 'close_window',
- '<ctrl>q' : 'close_window',
+ '<alt><shift>Tab': 'previous_window',
+ '<alt>Escape' : 'close_window',
'0xDC' : 'open_search',
- '<alt>s' : 'say_text'
+# the following are intended for emulator users
+ '<alt><shift>f' : 'frame',
+ '<alt><shift>q' : 'quit_emulator',
+ '<alt><shift>o' : 'open_search',
+ '<alt><shift>r' : 'rotate',
+ '<alt><shift>s' : 'say_text',
}
J_DBUS_SERVICE = 'org.laptop.Journal'