From: Wojciech Siewierski Date: Wed, 3 May 2017 22:58:01 +0000 (+0200) Subject: dynamic_macro.h: Always toggle the backlight twice as a notification X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5e2a9992783e584f66dfeef16abf9d31c976311a;p=qmk_firmware.git dynamic_macro.h: Always toggle the backlight twice as a notification Apparently sometimes the backlight was toggled only once and it was left on. --- 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(); } }