Changeset 1c6c3e1d in mainline for uspace/app/taskbar/clock.c
- Timestamp:
- 2023-10-22T17:55:33Z (14 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 350ec74
- Parents:
- 315d487 (diff), 133461c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/clock.c
r315d487 r1c6c3e1d 322 322 { 323 323 taskbar_clock_t *clock = (taskbar_clock_t *) arg; 324 ui_t *ui; 325 326 ui = ui_window_get_ui(clock->window); 327 ui_lock(ui); 324 328 325 329 fibril_mutex_lock(&clock->lock); 326 (void) taskbar_clock_paint(clock); 330 if (!ui_is_suspended(ui_window_get_ui(clock->window))) 331 (void) taskbar_clock_paint(clock); 327 332 328 333 if (!clock->timer_cleanup) { … … 336 341 337 342 fibril_mutex_unlock(&clock->lock); 343 ui_unlock(ui); 338 344 } 339 345
Note:
See TracChangeset
for help on using the changeset viewer.