From: Michael Stapelberg Date: Sat, 12 Dec 2009 17:43:30 +0000 (+0100) Subject: Bugfix: Fix assignments to not yet visible workspaces X-Git-Tag: 3.e~6^2~209 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ffe925f733d2840bba0083b433aa9dd7586dcd99;p=i3%2Fi3 Bugfix: Fix assignments to not yet visible workspaces This was broken by commit 5a1668db3 --- diff --git a/src/manage.c b/src/manage.c index e754d9b5..030a3883 100644 --- a/src/manage.c +++ b/src/manage.c @@ -446,7 +446,8 @@ map: if ((new->workspace->fullscreen_client == NULL) || new->fullscreen) { if (!client_is_floating(new)) { new->container->currently_focused = new; - render_container(conn, new->container); + if (map_frame) + render_container(conn, new->container); } if (new->container == CUR_CELL || client_is_floating(new)) xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, new->child, XCB_CURRENT_TIME);