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
No known key found for this signature in database
GPG Key ID: 220F99BD7DB7A99E

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