Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #35 from dwt/master
Browse files Browse the repository at this point in the history
Fix display of compound modifiers
  • Loading branch information
zrzka committed Nov 21, 2017
2 parents f93097b + ffb2a8d commit fca6967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blackmamba/uikit/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _modifier_selector_name(modifier):
flags = [
name
for mod, name in _names.items()
if mod.value & modifier == mod.value
if mod.value & modifier
]

if flags:
Expand Down

0 comments on commit fca6967

Please sign in to comment.