Return state by default on Macro if not a key up or key down event

This commit is contained in:
Josh Klar
2018-10-01 21:53:48 -07:00
parent 5fe54f6ca3
commit fbefed283b

View File

@@ -125,3 +125,5 @@ def macro(state, action_type, changed_key, logger):
if changed_key.keydown:
state.macro_pending = changed_key.keydown
return state
return state