1
0
Fork 0
forked from len0rd/rockbox

Fix red - forgot one #ifdef

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22948 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2009-10-05 12:18:56 +00:00
parent 311030c247
commit f8adc43c64

View file

@ -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 an item when he wanted to use the scrollbar, due to touchscreen
dead zones) 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 - x > list_text[screen].x + list_text[screen].width -
get_icon_width(SCREEN_MAIN)) get_icon_width(SCREEN_MAIN))
return ACTION_NONE; return ACTION_NONE;