block border comp geometry updates when pixmap has not been fetched
authorMike Blumenkrantz <m.blumenkran@samsung.com>
Mon, 24 Jun 2013 08:35:34 +0000 (09:35 +0100)
committerMike Blumenkrantz <m.blumenkran@samsung.com>
Mon, 24 Jun 2013 08:35:34 +0000 (09:35 +0100)
src/bin/e_comp.c

index ff6fdc3..4be2fee 100644 (file)
@@ -484,7 +484,10 @@ _e_comp_win_geometry_update(E_Comp_Win *cw)
         return;
      }
    if (cw->bd)
-     x = cw->bd->x, y = cw->bd->y;
+     {
+        if (!cw->pixmap) return;
+        x = cw->bd->x, y = cw->bd->y;
+     }
    else if (cw->visible)
      x = cw->x, y = cw->y;
    else