From 2b36b9994cfd8922c03f823eaad6492a33b4b956 Mon Sep 17 00:00:00 2001 From: Olivier Fourdan <fourdan.olivier@wanadoo.fr> Date: Fri, 8 Aug 2003 05:57:35 +0000 Subject: [PATCH] Bug fixes in MapNotify handler (Old svn revision: 11278) --- src/events.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/events.c b/src/events.c index bffff20b7..77540edd4 100644 --- a/src/events.c +++ b/src/events.c @@ -873,13 +873,6 @@ handleMapRequest (XMapRequestEvent * ev) c = clientGetFromWindow (ev->window, WINDOW); if (c) { - if (CLIENT_FLAG_TEST (c, CLIENT_FLAG_REPARENTING)) - { - TRACE ("handleMapRequest: another request for \"%s\" (0x%lx)", - c->name, c->window); - /* There is already a request in the pipe... */ - return; - } TRACE ("handleMapRequest: clientShow"); clientShow (c, TRUE); } @@ -902,7 +895,7 @@ handleMapNotify (XMapEvent * ev) if (c) { TRACE ("MapNotify for \"%s\" (0x%lx)", c->name, c->window); - if (CLIENT_FLAG_REPARENTING) + if (CLIENT_FLAG_TEST (c, CLIENT_FLAG_REPARENTING)) { /* First map caused by reparenting, clear flag and set ignore_unmaps to 0 so that everything @@ -911,10 +904,6 @@ handleMapNotify (XMapEvent * ev) CLIENT_FLAG_UNSET (c, CLIENT_FLAG_REPARENTING); c->ignore_unmap = 0; } - if (!CLIENT_FLAG_TEST (c, CLIENT_FLAG_HIDDEN)) - { - clientShow (c, TRUE); - } } } -- GitLab