aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/StopWatch.h
diff options
context:
space:
mode:
authorcodingjourney <coding@journey.sk>2024-11-30 22:23:31 +0100
committerJF <JF002@users.noreply.github.com>2025-11-04 21:25:31 +0100
commit487205ef6a8e81fe887a1fcd72fee9c4de33c81f (patch)
treed462c262287256b297bf7f06ba57ce55ff4164cf /src/displayapp/screens/StopWatch.h
parent4de9fc9b88c1e3fc9ced4931d446386374161d61 (diff)
length of lap list adapting to available space
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 dc69d5b4..51920f8b 100644
--- a/src/displayapp/screens/StopWatch.h
+++ b/src/displayapp/screens/StopWatch.h
@@ -44,7 +44,7 @@ namespace Pinetime::Applications {
Pinetime::System::WakeLock wakeLock;
Controllers::StopWatchController& stopWatchController;
TickType_t blinkTime = 0;
- static constexpr int displayedLaps = 2;
+ int displayedLaps = 3;
lv_obj_t *time, *msecTime, *btnPlayPause, *btnStopLap, *txtPlayPause, *txtStopLap;
lv_obj_t* lapText;
bool hoursVisible = false;