Merge pull request #324 from MFAshby/fix_stop_crash_315
Fix stopwatch crash after stop pressed
This commit is contained in:
commit
937dc340f1
|
@ -115,8 +115,9 @@ bool StopWatch::Refresh() {
|
||||||
// Init state when an user first opens the app
|
// Init state when an user first opens the app
|
||||||
// and when a stop/reset button is pressed
|
// and when a stop/reset button is pressed
|
||||||
case States::Init: {
|
case States::Init: {
|
||||||
if (btnStopLap) {
|
if (btnStopLap != nullptr) {
|
||||||
lv_obj_del(btnStopLap);
|
lv_obj_del(btnStopLap);
|
||||||
|
btnStopLap = nullptr;
|
||||||
}
|
}
|
||||||
// The initial default value
|
// The initial default value
|
||||||
lv_label_set_text(time, "00:00");
|
lv_label_set_text(time, "00:00");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user