only freeze/thaw edje objects on non-input clients
authorMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 8 Jun 2015 18:46:33 +0000 (14:46 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 8 Jun 2015 18:46:33 +0000 (14:46 -0400)
src/bin/e_comp_object.c

index f211957..fdf86e2 100644 (file)
@@ -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);