diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-08-23 23:44:31 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-23 23:44:31 +0000 |
| commit | 19f44a61cfb333c363d823e43b5de282ef2d2ed0 (patch) | |
| tree | 77aeee29551bc99be86adc39f43436ebc4bda5f1 /apps/settings.h | |
| parent | 7dfec97c5d0c0295403bb97570a5f524b2cb26b4 (diff) | |
| download | rockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.zip rockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.tar.gz rockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.tar.bz2 rockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.tar.xz | |
Fix redraw issues when the statusbar setting was changed with an UI viewport. Now the old statusbar area is cleared upon changing the setting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22484 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h index cbd7b6d..1365736 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -26,6 +26,7 @@ #include <stddef.h> #include "inttypes.h" #include "config.h" +#include "statusbar.h" /* for the statusbar values */ #include "button.h" #if CONFIG_CODEC == SWCODEC #include "audio.h" @@ -156,9 +157,6 @@ enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE, REPLAYGAIN_OF /* show path types */ enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL }; -/* statusbar visibility/position */ -enum { STATUSBAR_OFF = 0, STATUSBAR_TOP, STATUSBAR_BOTTOM }; - /* scrollbar visibility/position */ enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT }; |