浏览代码

dynamic_macro.h: Always toggle the backlight twice as a notification

Apparently sometimes the backlight was toggled only once and it was left on.
Wojciech Siewierski 8 年之前
父节点
当前提交
5e2a999278
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      quantum/dynamic_macro.h

+ 1 - 3
quantum/dynamic_macro.h

@@ -119,9 +119,7 @@ void dynamic_macro_record_key(
         **macro_pointer = *record;
         **macro_pointer = *record;
         *macro_pointer += direction;
         *macro_pointer += direction;
     } else {
     } 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();
     }
     }
 }
 }