mirror of
https://github.com/jmwtsn/qmk_firmware.git
synced 2026-06-03 11:43:35 -03:00
Mask out active mods when unregistering after retro tapping (#26127)
Do not unregister modifiers still held by other keys
This commit is contained in:
+3
-1
@@ -879,7 +879,9 @@ void process_action(keyrecord_t *record, action_t action) {
|
|||||||
wait_ms(TAP_CODE_DELAY);
|
wait_ms(TAP_CODE_DELAY);
|
||||||
tap_code(action.layer_tap.code);
|
tap_code(action.layer_tap.code);
|
||||||
wait_ms(TAP_CODE_DELAY);
|
wait_ms(TAP_CODE_DELAY);
|
||||||
unregister_mods(retro_tap_curr_mods);
|
// Only unregister the mods that were active at the time of
|
||||||
|
// the tap and are not independently held by other keys.
|
||||||
|
unregister_mods(retro_tap_curr_mods & ~curr_mods);
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
retro_tap_primed = false;
|
retro_tap_primed = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user