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

@@ -43,7 +43,7 @@ bool dip_switch_update_kb(uint8_t index, bool active) {
}
case 1: {
// Handle RGB Encoder switch press
action_exec(MAKE_KEYEVENT(isLeftHand ? 4 : 10, 6, active));
action_exec(MAKE_KEYEVENT(is_keyboard_left() ? 4 : 10, 6, active));
break;
}
}