From 2d09b8ecac5d9ab0c23e43e45c638724e71afd6d Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 17 Dec 2015 11:56:10 -0500 Subject: [PATCH] only show x11 clients during MapNotify/Request if they have Normal state --- 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 8cc1170fc..d17284406 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1323,7 +1323,7 @@ _e_comp_x_show_helper(E_Client *ec) evas_object_hide(ec->frame); e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h); } - else if (ec->icccm.state != ECORE_X_WINDOW_STATE_HINT_WITHDRAWN) + else if (ec->icccm.state == ECORE_X_WINDOW_STATE_HINT_NORMAL) evas_object_show(ec->frame); _e_comp_x_client_data_get(ec)->first_map = 1; if (ec->internal_elm_win)