summaryrefslogtreecommitdiff
path: root/quantum
diff options
context:
space:
mode:
authorCoffeeIsLife <36961653+CoffeeIsLife87@users.noreply.github.com>2022-07-02 07:49:49 -0500
committerGitHub <noreply@github.com>2022-07-02 22:49:49 +1000
commit0365f640af0a732366f1c71e86f6534629225161 (patch)
tree329b4c855f563f6d7b585235f583c94463883c18 /quantum
parent4e35697e1a76a54f0ed756f98033535cf1322792 (diff)
Allow for RGB actions to take place on Keydown instead of Keyup (#16886)
* Allow for switch on keydown * add docs
Diffstat (limited to 'quantum')
-rw-r--r--quantum/process_keycode/process_rgb.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_rgb.c b/quantum/process_keycode/process_rgb.c
index c805bd615d..dae129786e 100644
--- a/quantum/process_keycode/process_rgb.c
+++ b/quantum/process_keycode/process_rgb.c
@@ -52,7 +52,11 @@ static void __attribute__((noinline, unused)) handleKeycodeRGBMode(const uint8_t
*/
bool process_rgb(const uint16_t keycode, const keyrecord_t *record) {
// need to trigger on key-up for edge-case issue
+#ifndef RGB_TRIGGER_ON_KEYDOWN
if (!record->event.pressed) {
+#else
+ if (record->event.pressed) {
+#endif
#if (defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_DISABLE_KEYCODES)) || (defined(RGB_MATRIX_ENABLE) && !defined(RGB_MATRIX_DISABLE_KEYCODES))
uint8_t shifted = get_mods() & MOD_MASK_SHIFT;
#endif