Skip to content

Commit efbe79b

Browse files
authored
tileclk: Fix clock info dismissal behavior - only dismiss via main time area tap
1 parent b28a311 commit efbe79b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

apps/tileclk/app.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@
758758
// Bottom area - toggles between seconds and clock info
759759
if (e.y >= bottomArea.top && e.y <= bottomArea.bottom) {
760760
if (showingClockInfo) {
761-
// Refocus if unfocused, otherwise toggle to seconds
761+
// Refocus if unfocused
762762
if (clockInfoUnfocused) {
763763
if (settings.haptics !== false) Bangle.buzz(50);
764764
clockInfoUnfocused = false;
@@ -767,10 +767,8 @@
767767
clockInfoMenu.redraw();
768768
}
769769
g.flip();
770-
} else if (showSeconds) {
771-
if (settings.haptics !== false) Bangle.buzz(50);
772-
switchToSeconds();
773770
}
771+
// When focused, do nothing (don't hide)
774772
} else {
775773
// Switch to clock info if available
776774
if (clockInfoMenu) {

0 commit comments

Comments
 (0)