From 26f61cb50aa2204ac849f93c5cd7965a2c73f897 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 24 Jun 2013 09:35:34 +0100 Subject: [PATCH] block border comp geometry updates when pixmap has not been fetched --- src/bin/e_comp.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index ff6fdc3fd..4be2fee46 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -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