when user call elm_genlist_policy_set,
It causes stack overflow because policy_set api calls itself.
this commit modifies the policy_set api to call
its parent method body rather than itself.
Change-Id: Id5b56bc351c53e5ae38a31a6b69841e763db0acb
Signed-off-by: Wonki Kim <wonki_.kim@samsung.com>
(policy_v >= ELM_SCROLLER_POLICY_LAST))
return;
- eo_do(obj, elm_interface_scrollable_policy_set(policy_h, policy_v));
+ eo_do_super(obj, MY_CLASS, elm_interface_scrollable_policy_set(policy_h, policy_v));
}
EAPI void