hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2f451ba1b49885071442faff657b2b000633c64c
commit 2f451ba1b49885071442faff657b2b000633c64c Author: ChunEon Park <[email protected]> Date: Fri Feb 20 20:53:48 2015 +0900 bin/live_edit: fix logic wrong. live edit should be canceled when ctxpopup is dismissed --- src/bin/live_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/live_edit.c b/src/bin/live_edit.c index 97d0a51..992ee06 100644 --- a/src/bin/live_edit.c +++ b/src/bin/live_edit.c @@ -254,7 +254,7 @@ ctxpopup_dismissed_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) { live_data *ld = data; - if (!ld->layout) live_edit_toggle(); + if (!ld->layout) live_edit_cancel(); evas_object_del(obj); ld->ctxpopup = NULL; } --
