From: Michael Stapelberg Date: Fri, 21 Aug 2009 10:19:04 +0000 (+0200) Subject: Bugfix: Map window when it got the fullscreen hint set X-Git-Tag: 3.d~129 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=012f618c8523a6a83f5b266fb1afc9ed3ae60226;p=i3%2Fi3 Bugfix: Map window when it got the fullscreen hint set --- 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))