[Feature] Shift + Home is now a shortcut to go to calculation (#320)

This commit is contained in:
David
2020-03-27 15:02:35 -05:00
committed by GitHub
parent dde2d67634
commit cd8965fdd4
4 changed files with 10 additions and 4 deletions

View File

@@ -218,6 +218,10 @@ bool AppsContainer::processEvent(Ion::Events::Event event) {
switchTo(appSnapshotAtIndex(0));
return true;
}
if (event == Ion::Events::ShiftHome) {
switchTo(appSnapshotAtIndex(1));
return true;
}
if (event == Ion::Events::OnOff) {
suspend(true);
return true;