Index: apps/menus/display_menu.c =================================================================== --- apps/menus/display_menu.c (revision 22374) +++ apps/menus/display_menu.c (working copy) @@ -329,8 +329,9 @@ #endif MENUITEM_SETTING(volume_type, &global_settings.volume_type, NULL); MENUITEM_SETTING(battery_display, &global_settings.battery_display, NULL); +MENUITEM_SETTING(scrollbar_width, &global_settings.scrollbar_width, NULL); MAKE_MENU(bars_menu, ID2P(LANG_BARS_MENU), 0, Icon_NOICON, - &scrollbar_item, &statusbar, + &scrollbar_item, &scrollbar_width, &statusbar, #ifdef HAVE_REMOTE_LCD &remote_statusbar, #endif Index: apps/gui/list.h =================================================================== --- apps/gui/list.h (revision 22374) +++ apps/gui/list.h (working copy) @@ -26,7 +26,7 @@ #include "icon.h" #include "screen_access.h" -#define SCROLLBAR_WIDTH 6 +#define SCROLLBAR_WIDTH global_settings.scrollbar_width enum list_wrap { LIST_WRAP_ON = 0, Index: apps/settings.h =================================================================== --- apps/settings.h (revision 22374) +++ apps/settings.h (working copy) @@ -769,6 +769,7 @@ unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */ #endif #endif + int scrollbar_width; }; /** global variables **/ Index: apps/settings_list.c =================================================================== --- apps/settings_list.c (revision 22374) +++ apps/settings_list.c (working copy) @@ -1550,6 +1550,9 @@ 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); Index: apps/lang/english.lang =================================================================== --- apps/lang/english.lang (revision 22374) +++ apps/lang/english.lang (working copy) @@ -12671,3 +12671,17 @@ *: "Skin RAM usage" + + id: LANG_SCROLLBAR_WIDTH + desc: in Settings -> General -> Display -> Status-/Scrollbar + user: core + + *: "Scroll Bar Width" + + + *: "Scroll Bar Width" + + + *: "Scroll bar width" + +