We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 894e3ce + bdf7e52 commit dc25e7aCopy full SHA for dc25e7a
1 file changed
src/displayapp/DisplayApp.cpp
@@ -262,7 +262,13 @@ void DisplayApp::Refresh() {
262
break;
263
case Messages::ButtonLongPressed:
264
if (currentApp != Apps::Clock) {
265
- LoadApp(Apps::Clock, DisplayApp::FullRefreshDirections::Down);
+ if (currentApp == Apps::Notifications) {
266
+ LoadApp(Apps::Clock, DisplayApp::FullRefreshDirections::Up);
267
+ } else if (currentApp == Apps::QuickSettings) {
268
+ LoadApp(Apps::Clock, DisplayApp::FullRefreshDirections::LeftAnim);
269
+ } else {
270
+ LoadApp(Apps::Clock, DisplayApp::FullRefreshDirections::Down);
271
+ }
272
}
273
274
case Messages::ButtonLongerPressed:
0 commit comments