Skip to content

Commit

Permalink
Fix keybinding-related crash with solution qutebrowser#2
Browse files Browse the repository at this point in the history
  • Loading branch information
hcpl committed Oct 8, 2016
1 parent ea5cbb0 commit 123e904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qutebrowser/config/parsers/keyconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def _load_default(self, *, only_new=False):
bindings_to_add[sectname] = collections.OrderedDict()
for command, keychains in sect.items():
for e in keychains:
if not only_new or self._is_new(sectname, command, e):
if not only_new or self._is_new(sectname, command, e.lower()):
assert e not in bindings_to_add[sectname]
bindings_to_add[sectname][e] = command

Expand Down

0 comments on commit 123e904

Please sign in to comment.