remove some unnecessary code

This commit is contained in:
jacekpoz 2024-09-03 10:22:11 +02:00
parent 4467107df0
commit d240f29c1b
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -201,21 +201,6 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
#ifdef POINTING_DEVICE_ENABLE
encoder_update_mouse(index, clockwise);
#endif
// // left board
// if (index == 0) {
// if (clockwise) {
// tap_code(MS_RGHT);
// } else {
// tap_code(MS_LEFT);
// }
// // right board
// } else if (index == 1) {
// if (clockwise) {
// tap_code(MS_DOWN);
// } else {
// tap_code(MS_UP);
// }
// }
return false;
}
#endif