mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-25 00:30:46 +01:00
[Feature] Add Toolbox / Table shortcuts (#327)
This commit is contained in:
@@ -140,6 +140,12 @@ 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) {
|
||||
for (int i = depth; i > 0; i--) {
|
||||
returnToPreviousMenu();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if (selectedRow() < 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user