Merge pull request #2 from keyboardio/f/always-trigger

Instead of calling macroAction only on keydown, call it every time
pull/365/head
Jesse Vincent 8 years ago committed by GitHub
commit 634dca4a2c

@ -50,9 +50,6 @@ static Key handleMacroEvent(Key mappedKey, byte row, byte col, uint8_t keyState)
if (mappedKey.flags != (SYNTHETIC | IS_MACRO))
return mappedKey;
if (!key_toggled_on(keyState))
return Key_NoKey;
Macros_::row = row;
Macros_::col = col;
const macro_t *m = macroAction(mappedKey.keyCode, keyState);

Loading…
Cancel
Save