summaryrefslogtreecommitdiffstats
path: root/quantum/dynamic_macro.h
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2017-05-04 00:58:01 +0200
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2017-05-04 00:58:01 +0200
commit5e2a9992783e584f66dfeef16abf9d31c976311a (patch)
treec61cca1c00f4400128371f41350ab92b5986a907 /quantum/dynamic_macro.h
parent40fe30e4d6b521284fa3cb7ae217ebb6d013bcdf (diff)
downloadqmk_firmware-5e2a9992783e584f66dfeef16abf9d31c976311a.tar.gz
qmk_firmware-5e2a9992783e584f66dfeef16abf9d31c976311a.tar.xz
dynamic_macro.h: Always toggle the backlight twice as a notification
Apparently sometimes the backlight was toggled only once and it was left on.
Diffstat (limited to 'quantum/dynamic_macro.h')
-rw-r--r--quantum/dynamic_macro.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/dynamic_macro.h b/quantum/dynamic_macro.h
index 1a8ec4032..c9120897f 100644
--- a/quantum/dynamic_macro.h
+++ b/quantum/dynamic_macro.h
@@ -119,9 +119,7 @@ void dynamic_macro_record_key(
**macro_pointer = *record;
*macro_pointer += direction;
} else {
- /* Notify about the end of buffer. The blinks are paired
- * because they should happen on both down and up events. */
- backlight_toggle();
+ dynamic_macro_led_blink();
}
}