Revert "move comp object tiler creation to helper function to catch retries"
authorMike Blumenkrantz <zmike@samsung.com>
Thu, 27 Mar 2014 21:01:22 +0000 (17:01 -0400)
committerMike Blumenkrantz <zmike@samsung.com>
Thu, 27 Mar 2014 21:01:22 +0000 (17:01 -0400)
This reverts commit f4e4b2fc4f0e9a1741f11bc945fb72c4b137ff9c.

testing commit that wasn't supposed to go upstream

src/bin/e_comp_object.c

index 49fdd27400d3669bf547d3bacbe2b821cfeaa0c7..9c5fce06562f6b191f6a8903cf1d8958dc9a874d 100644 (file)
@@ -1246,12 +1246,6 @@ _e_comp_intercept_show_helper(E_Comp_Object *cw)
         EC_CHANGED(cw->ec);
         return;
      }
-
-   if ((!cw->ec->input_only) && (!cw->ec->ignored) && (!cw->updates))
-     {
-        cw->updates = eina_tiler_new(cw->ec->client.w, cw->ec->client.h);
-        eina_tiler_tile_size_set(cw->updates, 1, 1);
-     }
    if (cw->ec->input_only)
      {
         cw->real_hid = 0;
@@ -1326,6 +1320,12 @@ _e_comp_intercept_show(void *data, Evas_Object *obj EINA_UNUSED)
 #endif
         cw->redirected = 1;
         evas_object_color_set(cw->clip, ec->netwm.opacity, ec->netwm.opacity, ec->netwm.opacity, ec->netwm.opacity);
+
+        if ((!cw->ec->input_only) && (!cw->ec->ignored))
+          {
+             cw->updates = eina_tiler_new(cw->ec->client.w, cw->ec->client.h);
+             eina_tiler_tile_size_set(cw->updates, 1, 1);
+          }
      }
 
    _e_comp_intercept_show_helper(cw);