diff options
Diffstat (limited to 'apps/gui/statusbar-skinned.c')
-rw-r--r-- | apps/gui/statusbar-skinned.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/statusbar-skinned.c b/apps/gui/statusbar-skinned.c index fc9735da21..c991d8ea40 100644 --- a/apps/gui/statusbar-skinned.c +++ b/apps/gui/statusbar-skinned.c | |||
@@ -170,9 +170,9 @@ void sb_skin_update(enum screen_type screen, bool force) | |||
170 | if (lcd_active() || (i != SCREEN_MAIN)) | 170 | if (lcd_active() || (i != SCREEN_MAIN)) |
171 | #endif | 171 | #endif |
172 | { | 172 | { |
173 | bool full_update = skin_do_full_update(CUSTOM_STATUSBAR, screen); | 173 | if (force) |
174 | skin_update(CUSTOM_STATUSBAR, screen, force || | 174 | skin_request_full_update(CUSTOM_STATUSBAR); |
175 | full_update ? SKIN_REFRESH_ALL : SKIN_REFRESH_NON_STATIC); | 175 | skin_update(CUSTOM_STATUSBAR, screen, SKIN_REFRESH_NON_STATIC); |
176 | } | 176 | } |
177 | next_update[i] = current_tick + update_delay; /* don't update too often */ | 177 | next_update[i] = current_tick + update_delay; /* don't update too often */ |
178 | } | 178 | } |