diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-06-08 18:19:43 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-06-08 18:19:43 +0000 |
| commit | be214c944503aa250c117b527bfec5e3b01f70ee (patch) | |
| tree | e8b0b21fd5a917a8167916026414f90c2b6adffe /apps/gui | |
| parent | eebde2a3676f7dd11011fabd7c4d74f0cb6532d5 (diff) | |
| download | rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.zip rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.gz rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.bz2 rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.xz | |
Fix a problem that the statusbar was redrawn to late and not really in sync with the lists when changing loading a (theme) .cfg or changing the colors witht the color picker. Now both, the statusbar and the tree lists are redrawn instantly after settings_apply() (even before the "Theme loaded" splash).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21222 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/viewport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/viewport.c b/apps/gui/viewport.c index f8223f7..c5b81a7 100644 --- a/apps/gui/viewport.c +++ b/apps/gui/viewport.c @@ -121,13 +121,12 @@ int viewportmanager_set_statusbar(int enabled) void viewportmanager_draw_statusbars(void* data) { - (void)data; int i; FOR_NB_SCREENS(i) { if (showing_bars(i)) - gui_statusbar_draw(&statusbars.statusbars[i], false); + gui_statusbar_draw(&statusbars.statusbars[i], (bool)data); } } |