From 6229fd7fbbf2ae6098d492a4e9a96a3676546e9a Mon Sep 17 00:00:00 2001 From: tomers Date: Mon, 5 Oct 2009 12:18:56 +0000 Subject: [PATCH] Fix red - forgot one #ifdef git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22948 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/bitmap/list.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index f65a1a8d0..8f5589dd2 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) an item when he wanted to use the scrollbar, due to touchscreen dead zones) */ - if(global_settings.scrollbar == SCROLLBAR_RIGHT && + /* TODO: Support RTL mode */ + if(global_settings.scrollbar == SCROLLBAR_SHOW_OPPOSITE && x > list_text[screen].x + list_text[screen].width - get_icon_width(SCREEN_MAIN)) return ACTION_NONE; -- 2.11.4.GIT