summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-08-23 23:44:31 +0000
committerThomas Martitz <kugel@rockbox.org>2009-08-23 23:44:31 +0000
commit19f44a61cfb333c363d823e43b5de282ef2d2ed0 (patch)
tree77aeee29551bc99be86adc39f43436ebc4bda5f1 /apps/settings.h
parent7dfec97c5d0c0295403bb97570a5f524b2cb26b4 (diff)
downloadrockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.tar.gz
rockbox-19f44a61cfb333c363d823e43b5de282ef2d2ed0.zip
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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h
index cbd7b6d3b3..1365736ecf 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -26,6 +26,7 @@
26#include <stddef.h> 26#include <stddef.h>
27#include "inttypes.h" 27#include "inttypes.h"
28#include "config.h" 28#include "config.h"
29#include "statusbar.h" /* for the statusbar values */
29#include "button.h" 30#include "button.h"
30#if CONFIG_CODEC == SWCODEC 31#if CONFIG_CODEC == SWCODEC
31#include "audio.h" 32#include "audio.h"
@@ -156,9 +157,6 @@ enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE, REPLAYGAIN_OF
156/* show path types */ 157/* show path types */
157enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL }; 158enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
158 159
159/* statusbar visibility/position */
160enum { STATUSBAR_OFF = 0, STATUSBAR_TOP, STATUSBAR_BOTTOM };
161
162/* scrollbar visibility/position */ 160/* scrollbar visibility/position */
163enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT }; 161enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT };
164 162