tileclk: Fix clock info dismissal behavior - only dismiss via main time area tap

master
stweedo 2025-06-18 16:55:21 -05:00 committed by GitHub
parent b28a3116f9
commit efbe79b51d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -758,7 +758,7 @@
// Bottom area - toggles between seconds and clock info
if (e.y >= bottomArea.top && e.y <= bottomArea.bottom) {
if (showingClockInfo) {
// Refocus if unfocused, otherwise toggle to seconds
// Refocus if unfocused
if (clockInfoUnfocused) {
if (settings.haptics !== false) Bangle.buzz(50);
clockInfoUnfocused = false;
@ -767,10 +767,8 @@
clockInfoMenu.redraw();
}
g.flip();
} else if (showSeconds) {
if (settings.haptics !== false) Bangle.buzz(50);
switchToSeconds();
}
// When focused, do nothing (don't hide)
} else {
// Switch to clock info if available
if (clockInfoMenu) {