Set step gauge outer to be white when step goal is reached
This commit is contained in:
parent
266573deff
commit
be505fc15f
|
@ -329,8 +329,12 @@ bool PineTimeStyle::Refresh() {
|
|||
stepCount = motionController.NbSteps();
|
||||
motionSensorOk = motionController.IsSensorOk();
|
||||
if (stepCount.IsUpdated() || motionSensorOk.IsUpdated()) {
|
||||
lv_gauge_set_value(stepGauge, 0, (stepCount.Get() / 100));
|
||||
lv_obj_realign(stepGauge);
|
||||
lv_gauge_set_value(stepGauge, 0, (stepCount.Get() / 100));
|
||||
lv_obj_realign(stepGauge);
|
||||
if (stepCount.Get() > settingsController.GetStepsGoal()) {
|
||||
lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
||||
lv_obj_set_style_local_scale_grad_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
||||
}
|
||||
}
|
||||
|
||||
return running;
|
||||
|
|
Loading…
Reference in New Issue
Block a user