efl_page_transition_scroll: bug fix in curr_page_change function

mark when a page's content is unset so that it can be refilled when necessary
This commit is contained in:
Jaeun Choi 2018-12-13 20:54:59 +09:00
parent aeda5e697f
commit 1645be2d49
1 changed files with 3 additions and 0 deletions

View File

@ -452,6 +452,9 @@ _efl_page_transition_scroll_curr_page_change(Eo *obj EINA_UNUSED,
{
efl_pack_unpack(pi->obj, pi->content);
efl_canvas_object_clip_set(pi->content, pd->backclip);
pi->content_num = -1;
pi->content = NULL;
}
}
}