Skip to content

Commit

Permalink
Update keymap for v0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
rschenk committed Sep 21, 2022
1 parent 0f640b9 commit 5663525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user/miryoku.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ uint16_t achordion_timeout_miryoku(uint16_t tap_hold_keycode) {
* This is used for sending different keycodes when in "qwerty" mode vs colemak.
*/
uint16_t default_layer_aware_keycode(uint8_t layer, uint16_t keycode_enabled, uint16_t keycode_disabled) {
return biton32(default_layer_state) == layer ? keycode_enabled : keycode_disabled;
return get_highest_layer(default_layer_state) == layer ? keycode_enabled : keycode_disabled;
}

#endif

0 comments on commit 5663525

Please sign in to comment.