summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingSetTime.h
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2022-08-11 11:16:57 +0300
committerJF <JF002@users.noreply.github.com>2022-09-17 21:27:32 +0200
commitb9224c1acedf911353156cf926848b90d8f165ae (patch)
tree31d6a9861d311f668a42f0c658fe33da2e0d23c7 /src/displayapp/screens/settings/SettingSetTime.h
parentbf90e07a28ed0cd5816d9090a172c60af6170625 (diff)
Disable value_str
value_str is a way to add text on a button without a separate label. This saves having an extra label object, but uses more memory and is removed in LVGL8
Diffstat (limited to 'src/displayapp/screens/settings/SettingSetTime.h')
-rw-r--r--src/displayapp/screens/settings/SettingSetTime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/displayapp/screens/settings/SettingSetTime.h b/src/displayapp/screens/settings/SettingSetTime.h
index e0b42bdd..b61962c1 100644
--- a/src/displayapp/screens/settings/SettingSetTime.h
+++ b/src/displayapp/screens/settings/SettingSetTime.h
@@ -26,6 +26,7 @@ namespace Pinetime {
lv_obj_t* lblampm;
lv_obj_t* btnSetTime;
+ lv_obj_t* lblSetTime;
Widgets::Counter hourCounter = Widgets::Counter(0, 23, jetbrains_mono_42);
Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_42);
};