Merge pull request #1294 from shieldsd/master
Prevent the recording of looping dynamic macros.
This commit is contained in:
commit
d548693c8b
1 changed files with 4 additions and 0 deletions
|
@ -274,6 +274,10 @@ bool process_record_dynamic_macro(uint16_t keycode, keyrecord_t *record)
|
||||||
macro_id = 0;
|
macro_id = 0;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
case DYN_MACRO_PLAY1:
|
||||||
|
case DYN_MACRO_PLAY2:
|
||||||
|
dprintln("dynamic macro: ignoring macro play key while recording");
|
||||||
|
return false;
|
||||||
default:
|
default:
|
||||||
/* Store the key in the macro buffer and process it normally. */
|
/* Store the key in the macro buffer and process it normally. */
|
||||||
switch (macro_id) {
|
switch (macro_id) {
|
||||||
|
|
Loading…
Reference in a new issue