From 329a7b1d0344c11698e335ddaec7848e3cc10b69 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 27 Jun 2012 13:16:13 +0000 Subject: [PATCH] fix ilist positional scrolling to actually show the item that is supposed to be shown ticket #570 SVN revision: 72945 --- src/bin/e_widget_ilist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_widget_ilist.c b/src/bin/e_widget_ilist.c index da0ce83bc..8f7984c1e 100644 --- a/src/bin/e_widget_ilist.c +++ b/src/bin/e_widget_ilist.c @@ -158,7 +158,7 @@ _queue_timer(void *data) if (qi->use_relative) e_scrollframe_child_pos_set(wd->o_scrollframe, x, y); else - e_scrollframe_child_region_show(wd->o_scrollframe, x, y, w, h); + e_scrollframe_child_region_show(wd->o_scrollframe, x, y + h, w, h); } else if (qi->command == CMD_SELECT) e_ilist_selected_set(wd->o_ilist, qi->item);