From 4c9527cf141a9f595e6730f2375f517dc9b47e7c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 17 Dec 2015 11:57:48 -0500 Subject: [PATCH] show non-new x11 clients immediately when changing Withdrawn -> Normal ref T2950 --- src/bin/e_comp_x.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index d17284406..89a5570c9 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -3449,7 +3449,12 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, E_Client *ec) if (ec->icccm.state == ECORE_X_WINDOW_STATE_HINT_WITHDRAWN) ec->ignored = 1, ec->visible = 0; else - ec->changes.visible = ec->visible = 1; + { + ec->visible = 1; + ec->changes.visible = ec->new_client; + if (!ec->new_client) + evas_object_show(ec->frame); + } } ec->icccm.accepts_focus = accepts_focus; ec->icccm.urgent = is_urgent;