efl_ui_list: fix wrong variable usage

Reviewers: SanghyeonLee, Hermet

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7113
This commit is contained in:
Yeongjong Lee 2018-09-27 13:55:20 +09:00 committed by Hermet Park
parent 8a4bac15e7
commit e6bc4d254e
1 changed files with 2 additions and 2 deletions

View File

@ -35,14 +35,14 @@ _item_scroll_internal(Eo *obj,
vpos = efl_ui_scrollable_content_pos_get(pd->smanager);
ipos.x = view.x;
ipos.w = ipos.w;
ipos.w = view.w;
// FIXME: align case will not correctly show in the position because of
// bar size calculation. there are no certain way to know the scroll calcuation finished.
if (EINA_DBL_EQ(align, -1.0))
{
ipos.y = ipos.y + vpos.y - view.y;
ipos.h = ipos.h;
ipos.h = view.h;
}
else if ((align > 0.0 || EINA_DBL_EQ(align, 0.0)) &&
(align < 1.0 || EINA_DBL_EQ(align, 1.0)))