1
0

Refactor keyboard/keymap use of deprecated isLeftHand (#25891)

This commit is contained in:
Joel Challis
2025-12-21 20:52:48 +00:00
committed by GitHub
parent d420bcad33
commit f82d4d8680
14 changed files with 25 additions and 29 deletions

View File

@@ -468,7 +468,7 @@ void keyboard_post_init_user(void) {
user_config.raw = eeconfig_read_user();
// When USB cable is connected to the left side keyboard, use QWERTY layout by default.
if (is_keyboard_master() && isLeftHand) {
if (is_keyboard_master() && is_keyboard_left()) {
default_layer_set(1UL << _QWERTY);
}