fix(spinbox): add missing update value (#6719)

This commit is contained in:
Martin Vladić
2024-08-23 22:12:04 +02:00
committed by GitHub
parent 7560fcb193
commit 14e6949a1e
+2
View File
@@ -365,6 +365,8 @@ static void lv_spinbox_event(const lv_obj_class_t * class_p, lv_event_t * e)
spinbox->step = 1;
uint32_t i;
for(i = 0; i < pos; i++) spinbox->step *= 10;
lv_spinbox_updatevalue(obj);
}
}
else if(code == LV_EVENT_KEY) {