diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index f211957da..fdf86e249 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -1961,8 +1961,11 @@ _e_comp_smart_hide(Evas_Object *obj) } } if (stopping) return; - edje_object_freeze(cw->effect_obj); - edje_object_freeze(cw->shobj); + if (!cw->ec->input_only) + { + edje_object_freeze(cw->effect_obj); + edje_object_freeze(cw->shobj); + } /* ensure focus-out */ if (cw->ec->focused) evas_object_focus_set(cw->ec->frame, 0); @@ -1989,8 +1992,11 @@ _e_comp_smart_show(Evas_Object *obj) evas_object_show(cw->clip); if (cw->input_obj) evas_object_show(cw->input_obj); - edje_object_thaw(cw->effect_obj); - edje_object_thaw(cw->shobj); + if (!cw->ec->input_only) + { + edje_object_thaw(cw->effect_obj); + edje_object_thaw(cw->shobj); + } evas_object_show(cw->effect_obj); if (cw->ec->internal_elm_win && (!evas_object_visible_get(cw->ec->internal_elm_win))) evas_object_show(cw->ec->internal_elm_win);