hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=7e6fbfde90539d2a9444be1a4289b11b265dfe3f
commit 7e6fbfde90539d2a9444be1a4289b11b265dfe3f Author: ChunEon Park <[email protected]> Date: Thu Jul 9 15:31:37 2015 +0900 ctxpopup: cutout slider updation. we don't need to update slider changes multiple times under the animator callback. --- src/lib/ctxpopup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ctxpopup.c b/src/lib/ctxpopup.c index 931b6e9..71d7e88 100644 --- a/src/lib/ctxpopup.c +++ b/src/lib/ctxpopup.c @@ -103,6 +103,7 @@ slider_changed_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) strcat(ctxdata->candidate, buf); } strcat(ctxdata->candidate, ctxdata->attr->append_str); + ecore_animator_del(ctxdata->animator); ctxdata->animator = ecore_animator_add(changed_animator_cb, ctxdata); } --
