Revert "e deskmirror - fix loss of mirror object from deskmirror"

This reverts commit bd0c590489.

the m->mirror object can never be deleted except in the case of a client
being removed from the owner desk. removing it at any point will break any
users of the deskmirror api and create other issues

ref T2846
This commit is contained in:
Mike Blumenkrantz 2015-11-19 15:44:34 -05:00
parent c9ddd75705
commit 84e801185a
1 changed files with 0 additions and 1 deletions

View File

@ -567,7 +567,6 @@ _comp_object_check(Mirror *m)
evas_object_geometry_get(m->comp_object, NULL, NULL, &w, &h);
if ((w < 2) || (h < 2)) return EINA_FALSE;
if (m->mirror) evas_object_del(m->mirror);
m->mirror = e_comp_object_util_mirror_add(m->comp_object);
if (!m->mirror) return EINA_FALSE;
evas_object_smart_callback_del(m->comp_object, "dirty", _comp_object_dirty);