discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=02134369c0cbdddda6267dcdda6212607144dafc
commit 02134369c0cbdddda6267dcdda6212607144dafc Author: Mike Blumenkrantz <[email protected]> Date: Thu Mar 5 12:44:27 2015 -0500 only hide comp object images for dead clients on smart hide --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 0fdee9a..979453b 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -1946,11 +1946,11 @@ _e_comp_smart_hide(Evas_Object *obj) evas_object_hide(cw->clip); if (cw->input_obj) evas_object_hide(cw->input_obj); evas_object_hide(cw->effect_obj); - evas_object_hide(cw->obj); if (cw->ec->dead && cw->obj_mirror) { Evas_Object *o; + evas_object_hide(cw->obj); EINA_LIST_FREE(cw->obj_mirror, o) { evas_object_image_data_set(o, NULL); --
