summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingShakeThreshold.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-21 14:06:42 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-21 14:06:42 (GMT)
commit3744e655fa94cc2efece15c3196cf8b398354ca2 (patch)
tree1040ff59e6f06fb901ba621856e28957c0b36589 /src/displayapp/screens/settings/SettingShakeThreshold.cpp
parent9f062635af3548425102b976e26ebbdfa998d670 (diff)
parent8ea7d77d1b1f476c890bf04b44ad9e2c858a4d1c (diff)
Merge branch 'rev22-develop' into edge
Diffstat (limited to 'src/displayapp/screens/settings/SettingShakeThreshold.cpp')
-rw-r--r--src/displayapp/screens/settings/SettingShakeThreshold.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/displayapp/screens/settings/SettingShakeThreshold.cpp b/src/displayapp/screens/settings/SettingShakeThreshold.cpp
index 9d40fcf..c354bdc 100644
--- a/src/displayapp/screens/settings/SettingShakeThreshold.cpp
+++ b/src/displayapp/screens/settings/SettingShakeThreshold.cpp
@@ -57,7 +57,7 @@ SettingShakeThreshold::SettingShakeThreshold(DisplayApp* app,
lv_obj_align(calButton, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0);
lv_btn_set_checkable(calButton, true);
calLabel = lv_label_create(calButton, NULL);
- lv_label_set_text(calLabel, "Calibrate");
+ lv_label_set_text_static(calLabel, "Calibrate");
lv_arc_set_value(positionArc, settingsController.GetShakeThreshold());
@@ -91,7 +91,7 @@ void SettingShakeThreshold::Refresh() {
calibrating = 2;
lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_RED);
lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_RED);
- lv_label_set_text(calLabel, "Shake!!");
+ lv_label_set_text_static(calLabel, "Shake!");
}
}
if (calibrating == 2) {
@@ -121,14 +121,14 @@ void SettingShakeThreshold::UpdateSelected(lv_obj_t* object, lv_event_t event) {
lv_arc_set_value(positionArc, 0);
calibrating = 1;
vCalTime = xTaskGetTickCount();
- lv_label_set_text(calLabel, "Ready!");
+ lv_label_set_text_static(calLabel, "Ready!");
lv_obj_set_click(positionArc, false);
lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_GREEN);
lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_GREEN);
} else if (lv_btn_get_state(calButton) == LV_BTN_STATE_RELEASED) {
calibrating = 0;
lv_obj_set_click(positionArc, true);
- lv_label_set_text(calLabel, "Calibrate");
+ lv_label_set_text_static(calLabel, "Calibrate");
}
break;
}