# HG changeset patch # User Goffi # Date 1500013870 -7200 # Node ID 2a1880d5d450e3a0d57a465388de41905b3bfa57 # Parent 2a6b8742e44a1dbd3a9f1c23571bf8ec7972eaec keys: don't lower() shortcuts anymore diff -r 2a6b8742e44a -r 2a1880d5d450 urwid_satext/keys.py --- a/urwid_satext/keys.py Fri Jul 14 08:30:42 2017 +0200 +++ b/urwid_satext/keys.py Fri Jul 14 08:31:10 2017 +0200 @@ -55,7 +55,7 @@ if action in self: raise ConflictError("The action [{}] already exists".format(action)) - return super(ActionMap, self).__setitem__(action, shortcut.lower()) + return super(ActionMap, self).__setitem__(action, shortcut) def __delitem__(self, action): # we don't want to delete actions