diff options
author | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-05-04 00:58:01 +0200 |
---|---|---|
committer | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-05-04 00:58:01 +0200 |
commit | 5e2a9992783e584f66dfeef16abf9d31c976311a (patch) | |
tree | c61cca1c00f4400128371f41350ab92b5986a907 | |
parent | 40fe30e4d6b521284fa3cb7ae217ebb6d013bcdf (diff) | |
download | qmk_firmware-5e2a9992783e584f66dfeef16abf9d31c976311a.tar.gz qmk_firmware-5e2a9992783e584f66dfeef16abf9d31c976311a.zip |
dynamic_macro.h: Always toggle the backlight twice as a notification
Apparently sometimes the backlight was toggled only once and it was left on.
-rw-r--r-- | quantum/dynamic_macro.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/dynamic_macro.h b/quantum/dynamic_macro.h index 1a8ec40326..c9120897f8 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(); } } |