aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/quantum.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 7463c9d73..2def99ac8 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -303,6 +303,11 @@ bool process_record_quantum(keyrecord_t *record) {
303 set_output(OUTPUT_BLUETOOTH); 303 set_output(OUTPUT_BLUETOOTH);
304 return false; 304 return false;
305#endif 305#endif
306#if defined(BACKLIGHT_ENABLE) && defined(BACKLIGHT_BREATHING)
307 case BL_BRTG:
308 backlight_toggle_breathing();
309 return false;
310#endif
306 } 311 }
307 } 312 }
308 313
@@ -454,11 +459,6 @@ bool process_record_quantum(keyrecord_t *record) {
454 rgblight_mode(RGBLIGHT_MODE_RGB_TEST); 459 rgblight_mode(RGBLIGHT_MODE_RGB_TEST);
455# endif 460# endif
456 return false; 461 return false;
457#if defined(BACKLIGHT_ENABLE) && defined(BACKLIGHT_BREATHING)
458 case BL_BRTG:
459 backlight_toggle_breathing();
460 return false;
461#endif
462 } 462 }
463 } 463 }
464#endif 464#endif