Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-10-24 11:14:31 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-10-24 11:14:31 (GMT)
commit076ea31820887facf8d165ad34aba6987030f8f5 (patch)
tree3db62fa408fc2242b9e02dcb7c56d279ed529013 /shell
parent834d5c55e66b0eda021a0d3b76d0b2149570edeb (diff)
Fix some key names, looks like they are case sensitive.
Diffstat (limited to 'shell')
-rw-r--r--shell/view/keyhandler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/view/keyhandler.py b/shell/view/keyhandler.py
index 007bf2d..9fddee3 100644
--- a/shell/view/keyhandler.py
+++ b/shell/view/keyhandler.py
@@ -54,11 +54,11 @@ _actions_table = {
'0xEB' : 'rotate',
'<alt>r' : 'rotate',
'<alt>q' : 'quit_emulator',
- '<alt>tab' : 'next_window',
+ '<alt>Tab' : 'next_window',
'<alt>n' : 'next_window',
- '<ctrl><alt>tab' : 'previous_window',
+ '<ctrl><alt>Tab' : 'previous_window',
'<alt>p' : 'previous_window',
- '<ctrl>escape' : 'close_window',
+ '<ctrl>Escape' : 'close_window',
'<ctrl>q' : 'close_window'
}