qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit e648b84da3db022ba308163f21c3cf8165c45e09
parent b36e017f0a14e3e84017739b7dcff98394cccfa0
Author: Jake Grossman <jake.r.grossman@gmail.com>
Date:   Fri,  7 Jul 2023 09:40:09 -0500

Allow key override to respect weak mods caused by caps word (#21434)


Diffstat:
Mquantum/quantum.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/quantum/quantum.c b/quantum/quantum.c @@ -310,15 +310,15 @@ bool process_record_quantum(keyrecord_t *record) { #if (defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE) process_music(keycode, record) && #endif +#ifdef CAPS_WORD_ENABLE + process_caps_word(keycode, record) && +#endif #ifdef KEY_OVERRIDE_ENABLE process_key_override(keycode, record) && #endif #ifdef TAP_DANCE_ENABLE process_tap_dance(keycode, record) && #endif -#ifdef CAPS_WORD_ENABLE - process_caps_word(keycode, record) && -#endif #if defined(UNICODE_COMMON_ENABLE) process_unicode_common(keycode, record) && #endif