From 5a1668db36d31ee7984c90c33ef5868b4f0d0c29 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 26 Nov 2009 21:32:53 +0100 Subject: [PATCH] Bugfix: Render containers after setting the client active (Thanks Mirko) This lead to race conditions when the window did not change its title after mapping and was displayed in a tabbed container. --- src/manage.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/manage.c b/src/manage.c index 98d01073..e754d9b5 100644 --- a/src/manage.c +++ b/src/manage.c @@ -444,8 +444,10 @@ map: 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) || new->fullscreen) { - if (!client_is_floating(new)) + if (!client_is_floating(new)) { new->container->currently_focused = new; + 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); }