Commit df3d2847 authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

Added ui_update() as default event behaviour in settings apps

parent 07aaef4c
......@@ -198,7 +198,9 @@ void set_date_main(void* params) {
ui_update(&evt);
break;
default: // suppress warnings
/* Update UI on any event, so the status bar is updated */
default:
ui_update(&evt);
break;
}
}
......
......@@ -185,7 +185,9 @@ void set_gmt_ofs_main(void* params) {
ui_update(&evt);
break;
default: // suppress warnings
/* Update UI on any event, so the status bar is updated */
default:
ui_update(&evt);
break;
}
}
......
......@@ -163,7 +163,9 @@ void set_time_main(void* params) {
ui_update(&evt);
break;
default: // suppress warnings
/* Update UI on any event, so the status bar is updated */
default:
ui_update(&evt);
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment