summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/bitmap/list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index f65a1a8d0b..8f5589dd2f 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -411,7 +411,8 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list)
411 an item when he wanted to use the scrollbar, due to touchscreen 411 an item when he wanted to use the scrollbar, due to touchscreen
412 dead zones) 412 dead zones)
413 */ 413 */
414 if(global_settings.scrollbar == SCROLLBAR_RIGHT && 414 /* TODO: Support RTL mode */
415 if(global_settings.scrollbar == SCROLLBAR_SHOW_OPPOSITE &&
415 x > list_text[screen].x + list_text[screen].width - 416 x > list_text[screen].x + list_text[screen].width -
416 get_icon_width(SCREEN_MAIN)) 417 get_icon_width(SCREEN_MAIN))
417 return ACTION_NONE; 418 return ACTION_NONE;