From 36a7f46c51a679a8fdaa92d776623d94cf905bde Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 21 Aug 2009 12:19:04 +0200 Subject: [PATCH] Bugfix: Map window when it got the fullscreen hint set --- src/manage.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/manage.c b/src/manage.c index dd726c6e..eb9112ec 100644 --- a/src/manage.c +++ b/src/manage.c @@ -422,19 +422,20 @@ void reparent_window(xcb_connection_t *conn, xcb_window_t child, and don’t event bother to redraw the layout – that would not change anything anyways */ client_toggle_fullscreen(conn, new); - return; + goto map; } render_layout(conn); +map: /* Map the window first to avoid flickering */ xcb_map_window(conn, child); if (map_frame) client_map(conn, new); - if (CUR_CELL->workspace->fullscreen_client == NULL && !new->dock) { + if ((CUR_CELL->workspace->fullscreen_client == NULL || new->fullscreen) && !new->dock) { /* Focus the new window if we’re not in fullscreen mode and if it is not a dock window */ - if (new->workspace->fullscreen_client == NULL) { + if ((new->workspace->fullscreen_client == NULL) || new->fullscreen) { if (!client_is_floating(new)) new->container->currently_focused = new; if (new->container == CUR_CELL || client_is_floating(new)) -- 2.39.5