summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-05 12:18:56 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-05 12:18:56 +0000
commitf8adc43c64304d6e4b8c66c90874731892b16e0c (patch)
tree40509568b0a8ea4efd8c501d484d4592d9d9a5b4
parent311030c247ecec2be1c205e9b0221b70999be185 (diff)
downloadrockbox-f8adc43c64304d6e4b8c66c90874731892b16e0c.tar.gz
rockbox-f8adc43c64304d6e4b8c66c90874731892b16e0c.zip
Fix red - forgot one #ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22948 a1c6a512-1295-4272-9138-f99709370657
-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;