Replace lv_label_set_text where possible
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user