summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2013-02-03 22:15:10 +0100
committerFlorent Le Coz <louiz@louiz.org>2013-02-03 22:15:10 +0100
commitdd9f6936be045cab2c6a3e3c927e161640f0705c (patch)
treeaea5b684f7f0812763919968a99066740d0cca67 /src/windows.py
parentf0b03ceee7c24066920f30422e462f816e37cedb (diff)
downloadpoezio-dd9f6936be045cab2c6a3e3c927e161640f0705c.tar.gz
poezio-dd9f6936be045cab2c6a3e3c927e161640f0705c.tar.bz2
poezio-dd9f6936be045cab2c6a3e3c927e161640f0705c.tar.xz
poezio-dd9f6936be045cab2c6a3e3c927e161640f0705c.zip
Remove some useless keys, and change the keys to scroll the info win.
M-d and M-c become M-D and M-C
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index beaca819..3975bf33 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -1101,9 +1101,7 @@ class Input(Win):
def __init__(self):
self.key_func = {
"KEY_LEFT": self.key_left,
- "M-D": self.key_left,
"KEY_RIGHT": self.key_right,
- "M-C": self.key_right,
"KEY_END": self.key_end,
"KEY_HOME": self.key_home,
"KEY_DC": self.key_dc,