mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Fix typo in action.c (#7757)
This commit is contained in:
parent
2557bc8e6f
commit
8ec0b378bc
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ void process_action(keyrecord_t *record, action_t action) {
|
||||||
action_macro_play(action_get_macro(record, action.func.id, action.func.opt));
|
action_macro_play(action_get_macro(record, action.func.id, action.func.opt));
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if defined(BACKLIGHT_ENABLE) | defined(LED_MATRIX_ENABLE)
|
#if defined(BACKLIGHT_ENABLE) || defined(LED_MATRIX_ENABLE)
|
||||||
case ACT_BACKLIGHT:
|
case ACT_BACKLIGHT:
|
||||||
if (!event.pressed) {
|
if (!event.pressed) {
|
||||||
switch (action.backlight.opt) {
|
switch (action.backlight.opt) {
|
||||||
|
|
Loading…
Reference in a new issue