Fixed caps issue on leader_dictionary and debug_enable

This commit is contained in:
Kyle Brown
2018-10-11 19:35:41 -07:00
parent 37aeeac10a
commit 5313e5f5b5
6 changed files with 11 additions and 11 deletions

View File

@@ -78,8 +78,8 @@ def process(state):
"""
lmh = tuple(state.leader_mode_history)
if lmh in state.LEADER_DICTIONARY:
state.macro_pending = state.LEADER_DICTIONARY[lmh].keydown
if lmh in state.leader_dictionary:
state.macro_pending = state.leader_dictionary[lmh].keydown
state.keys_pressed.clear()