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

Commit

Permalink
Fixed register_key_command
Browse files Browse the repository at this point in the history
  • Loading branch information
zrzka committed Oct 1, 2017
1 parent 2f769f0 commit e6bc6c7
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 @@ -348,7 +348,7 @@ def register_key_command(input, modifier_flags, function, title=None):
:param title: Optional discoverability title
:return: ``True`` if key command was registered otherwise ``False``
"""
return _register_key_event_handler(input, modifier_flags, function, title)
return _register_key_command(input, modifier_flags, function, title)


_key_event_handlers = []
Expand Down

0 comments on commit e6bc6c7

Please sign in to comment.