Allow for RGB actions to take place on Keydown instead of Keyup (#16886)

* Allow for switch on keydown

* add docs
This commit is contained in:
CoffeeIsLife 2022-07-02 07:49:49 -05:00 committed by GitHub
parent 4e35697e1a
commit 0365f640af
Failed to generate hash of commit
2 changed files with 5 additions and 0 deletions

View file

@ -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