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.
1 parent b26bcad commit 1702b15Copy full SHA for 1702b15
apps/launch/app.js
@@ -85,13 +85,9 @@
85
if (lockTimeout) clearTimeout(lockTimeout);
86
Bangle.removeListener("lock", lockHandler);
87
// Restore widgets if they were hidden by fullscreen setting
88
- if (global.WIDGETS) require("widget_utils").show();
+ if (global.WIDGETS && settings.fullscreen) require("widget_utils").show();
89
}
90
});
91
- if (settings.fullscreen) {
92
- require("widget_utils").hide();
93
- scroller.draw(); // FIX: The red back button will flicker before the widget is hidden and scroller redrawn.
94
- }
95
g.flip(); // force a render before widgets have finished drawing
96
97
// 10s of inactivity goes back to clock
0 commit comments