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 b28a311 commit efbe79bCopy full SHA for efbe79b
apps/tileclk/app.js
@@ -758,7 +758,7 @@
758
// Bottom area - toggles between seconds and clock info
759
if (e.y >= bottomArea.top && e.y <= bottomArea.bottom) {
760
if (showingClockInfo) {
761
- // Refocus if unfocused, otherwise toggle to seconds
+ // Refocus if unfocused
762
if (clockInfoUnfocused) {
763
if (settings.haptics !== false) Bangle.buzz(50);
764
clockInfoUnfocused = false;
@@ -767,10 +767,8 @@
767
clockInfoMenu.redraw();
768
}
769
g.flip();
770
- } else if (showSeconds) {
771
- if (settings.haptics !== false) Bangle.buzz(50);
772
- switchToSeconds();
773
+ // When focused, do nothing (don't hide)
774
} else {
775
// Switch to clock info if available
776
if (clockInfoMenu) {
0 commit comments