Skip to content

Commit c0ab5af

Browse files
author
Aaron Züger
committed
change settings button texts
1 parent 6c5eacd commit c0ab5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/displayapp/screens/WatchFaceAnalog.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ WatchFaceAnalog::WatchFaceAnalog(Controllers::DateTime& dateTimeController,
246246
lv_obj_align(btnClockStyle, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);
247247
lv_obj_set_style_local_bg_opa(btnClockStyle, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
248248
lv_obj_t* lblClockStyle = lv_label_create(btnClockStyle, nullptr);
249-
lv_label_set_text_static(lblClockStyle, "Toggle 24h");
249+
lv_label_set_text_static(lblClockStyle, "12h/24h");
250250
lv_obj_set_event_cb(btnClockStyle, event_handler);
251251
lv_obj_set_hidden(btnClockStyle, true);
252252

@@ -256,7 +256,7 @@ WatchFaceAnalog::WatchFaceAnalog(Controllers::DateTime& dateTimeController,
256256
lv_obj_align(btnSecondHand, lv_scr_act(), LV_ALIGN_CENTER, 0, 60);
257257
lv_obj_set_style_local_bg_opa(btnSecondHand, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
258258
lv_obj_t* lblSecondHand = lv_label_create(btnSecondHand, nullptr);
259-
lv_label_set_text_static(lblSecondHand, "Seconds");
259+
lv_label_set_text_static(lblSecondHand, "seconds");
260260
lv_obj_set_event_cb(btnSecondHand, event_handler);
261261
lv_obj_set_hidden(btnSecondHand, true);
262262

0 commit comments

Comments
 (0)