Skip to content

Commit

Permalink
Fix combo_ref_from_layer respect different default layer [qmk#21780] (q…
Browse files Browse the repository at this point in the history
  • Loading branch information
bncpr authored and autoferrit committed Dec 6, 2023
1 parent fc29538 commit fd4219f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_combo.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ bool process_combo(uint16_t keycode, keyrecord_t *record) {
/* Only check keycodes from one layer. */
keycode = keymap_key_to_keycode(COMBO_ONLY_FROM_LAYER, record->event.key);
#else
uint8_t highest_layer = get_highest_layer(layer_state);
uint8_t highest_layer = get_highest_layer(layer_state | default_layer_state);
uint8_t ref_layer = combo_ref_from_layer(highest_layer);
if (ref_layer != highest_layer) {
keycode = keymap_key_to_keycode(ref_layer, record->event.key);
Expand Down

0 comments on commit fd4219f

Please sign in to comment.