summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Cawthray <kieranc@gmail.com>2022-09-06 12:07:58 +0200
committerKieran Cawthray <kieranc@gmail.com>2022-09-06 12:07:58 +0200
commitfbc9f63308c0e9be90db387332cf60e3a117b7ee (patch)
tree191283e5ac2acc533e2853a6dfdbd5f39f2e1263
parentb49fddd555849c207d6bb235b891b1da1ed99728 (diff)
Relabel button
-rw-r--r--src/displayapp/screens/WatchFacePineTimeStyle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displayapp/screens/WatchFacePineTimeStyle.cpp b/src/displayapp/screens/WatchFacePineTimeStyle.cpp
index 161a2606..0bbff30f 100644
--- a/src/displayapp/screens/WatchFacePineTimeStyle.cpp
+++ b/src/displayapp/screens/WatchFacePineTimeStyle.cpp
@@ -315,10 +315,10 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app,
btnSteps = lv_btn_create(lv_scr_act(), nullptr);
btnSteps->user_data = this;
- lv_obj_set_size(btnSteps, 120, 60);
+ lv_obj_set_size(btnSteps, 160, 60);
lv_obj_align(btnSteps, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
lv_obj_set_style_local_bg_opa(btnSteps, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
- lv_obj_set_style_local_value_str(btnSteps, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Toggle");
+ lv_obj_set_style_local_value_str(btnSteps, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Steps style");
lv_obj_set_event_cb(btnSteps, event_handler);
lv_obj_set_hidden(btnSteps, true);