Skip to content

Commit 24ecb84

Browse files
author
Joel Hill
committed
feat: prevent swipe left navigation from QuickSettings
1 parent 6fd00c7 commit 24ecb84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/displayapp/DisplayApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ void DisplayApp::Refresh() {
443443
}
444444
} else if (gesture == LoadDirToReturnSwipe(appStackDirections.Top())) {
445445
LoadPreviousScreen();
446-
} else if (gesture == TouchEvents::SwipeRight) {
446+
} else if (gesture == TouchEvents::SwipeRight && currentApp != Apps::QuickSettings) {
447447
LoadNewScreen(Apps::Clock, DisplayApp::FullRefreshDirections::RightAnim);
448448
appStackDirections.Reset();
449449
returnAppStack.Reset();

0 commit comments

Comments
 (0)