aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/StopWatch.h
diff options
context:
space:
mode:
authorcodingjourney <coding@journey.sk>2025-01-20 22:31:50 +0100
committerJF <JF002@users.noreply.github.com>2025-11-04 21:25:31 +0100
commit0bfa2770d5f0c6d9a5531a5e2b863ab43569cb33 (patch)
tree4a551429a255fe1fc2be2953371f393edd5b7d2c /src/displayapp/screens/StopWatch.h
parent144242afc2fcd4a6800a965e2f35a7cb961b983f (diff)
fixed irregular pause mode blinking at clock wraparound
Diffstat (limited to 'src/displayapp/screens/StopWatch.h')
-rw-r--r--src/displayapp/screens/StopWatch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h
index 98c05bc4..595c71da 100644
--- a/src/displayapp/screens/StopWatch.h
+++ b/src/displayapp/screens/StopWatch.h
@@ -45,7 +45,7 @@ namespace Pinetime::Applications {
Pinetime::System::WakeLock wakeLock;
Controllers::StopWatchController& stopWatchController;
- TickType_t blinkTime = 0;
+ TickType_t lastBlinkTime = 0;
uint8_t displayedLaps = 3;
lv_obj_t *time, *msecTime, *btnPlayPause, *btnStopLap, *txtPlayPause, *txtStopLap;
lv_obj_t* lapText;