[Feature] Add ALPHA to some shortcuts

This commit is contained in:
Quentin
2020-06-13 00:03:01 +02:00
parent 5f15b37918
commit b7a5abe597
2 changed files with 5 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ bool NestedMenuController::handleEventForRow(Ion::Events::Event event, int rowIn
if ((event == Ion::Events::Back || event == Ion::Events::Left) && depth > 0) {
return returnToPreviousMenu();
}
if (event == Ion::Events::ShiftLeft && depth > 0) {
if ((event == Ion::Events::ShiftLeft || event == Ion::Events::AlphaLeft) && depth > 0) {
for (int i = depth; i > 0; i--) {
returnToPreviousMenu();
}