Keybindings: Parse <Primary> as <Control>

This commit is contained in:
Thomas Hurst 2012-05-17 00:08:38 +01:00
parent 61727e35c4
commit 5de8d10ea9
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ class Keybindings:
modifiers = {
'ctrl': gtk.gdk.CONTROL_MASK,
'control': gtk.gdk.CONTROL_MASK,
'primary': gtk.gdk.CONTROL_MASK,
'shift': gtk.gdk.SHIFT_MASK,
'alt': gtk.gdk.MOD1_MASK,
'super': gtk.gdk.SUPER_MASK,