Remove legacy sendstring keycodes (#18749)

This commit is contained in:
Ryan 2022-10-17 23:45:23 +11:00 committed by GitHub
parent c57330d340
commit bad8c5992b
Failed to generate hash of commit
73 changed files with 581 additions and 557 deletions

View file

@ -77,9 +77,9 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
}
else if (index == 1) {
if (clockwise) {
SEND_STRING(SS_LCTRL("1")); // audacity zoom in
SEND_STRING(SS_LCTL("1")); // audacity zoom in
} else {
SEND_STRING(SS_LCTRL("3")); // audacity zoom out
SEND_STRING(SS_LCTL("3")); // audacity zoom out
}
}
return true;