Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Keymap] Fix DVORAK/QWERTY status output for kzar keymap #12895

Merged
merged 1 commit into from
May 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion keyboards/kinesis/kint36/keymaps/kzar/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
SEND_STRING("Keyboard> " QMK_KEYBOARD "\n");
SEND_STRING("Keymap> " QMK_KEYMAP "\n");

if (layer_state_is(_QWERTY))
if (layer_state_cmp(default_layer_state, _QWERTY))
SEND_STRING("Layout> QWERTY\n");
else
SEND_STRING("Layout> DVORAK\n");
Expand Down