From 7c20b5407af99f4dbbf7ef54688b4d932dd197fe Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Tue, 25 Feb 2014 20:16:15 +0000 Subject: [PATCH] e_comp_x: check for zone before actually using it --- src/bin/e_comp_x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 0611b4e70..722108b8e 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -4550,7 +4550,7 @@ _e_comp_x_ee_resize(Ecore_Evas *ee) e_comp_canvas_update(c); E_CLIENT_FOREACH(c, ec) { - if (!e_client_util_ignored_get(ec)) + if (ec->zone && !e_client_util_ignored_get(ec)) _e_comp_x_client_zone_geometry_set(ec); } }