summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 23:05:45 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 23:05:45 +0000
commita06f287c81ae8ad1530c566788fc175c6c7d611a (patch)
tree1a03bb9d99cd4a94dc37579ea8b587230b06b8bb /apps
parent00b604814178b61fa720611fc10a602b15b7184c (diff)
downloadrockbox-a06f287c81ae8ad1530c566788fc175c6c7d611a.tar.gz
rockbox-a06f287c81ae8ad1530c566788fc175c6c7d611a.zip
* Fix red
* Make scrollbar width range from 3 -> LCD_WIDTH/10 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22389 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/viewer.c2
-rw-r--r--apps/settings_list.c7
2 files changed, 5 insertions, 4 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c
index 948d6af8c1..f2a3f9f029 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -37,6 +37,8 @@ PLUGIN_HEADER
#define TOP_SECTOR buffer
#define MID_SECTOR (buffer + SMALL_BLOCK_SIZE)
#define BOTTOM_SECTOR (buffer + 2*(SMALL_BLOCK_SIZE))
+#undef SCROLLBAR_WIDTH
+#define SCROLLBAR_WIDTH rb->global_settings->scrollbar_width
#define MAX_BOOKMARKED_FILES ((buffer_size/(signed)sizeof(struct bookmarked_file_info))-1)
diff --git a/apps/settings_list.c b/apps/settings_list.c
index ef496d5c53..ffea57d355 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -604,7 +604,9 @@ const struct settings_list settings[] = {
gui_statusbar_changed, 3, ID2P(LANG_OFF), ID2P(LANG_STATUSBAR_TOP),
ID2P(LANG_STATUSBAR_BOTTOM)),
#endif
- OFFON_SETTING(0,scrollbar, LANG_SCROLL_BAR, true,"scrollbar", NULL),
+ OFFON_SETTING(0,scrollbar, LANG_SCROLL_BAR, true, "scrollbar", NULL),
+ INT_SETTING(0, scrollbar_width, LANG_SCROLLBAR_WIDTH, 6, "scrollbar width",
+ UNIT_INT, 3, LCD_WIDTH/10, 1, NULL, NULL, NULL),
#if CONFIG_KEYPAD == RECORDER_PAD
OFFON_SETTING(0,buttonbar, LANG_BUTTON_BAR ,true,"buttonbar", NULL),
#endif
@@ -1550,9 +1552,6 @@ const struct settings_list settings[] = {
VIEWPORT_SETTING(remote_ui_vp_config, "remote ui viewport"),
#endif
#endif
-
- INT_SETTING(0, scrollbar_width, LANG_SCROLLBAR_WIDTH, 6, "scrollbar width",
- UNIT_INT, 6, 20, 1, NULL, NULL, NULL),
};
const int nb_settings = sizeof(settings)/sizeof(*settings);