Bugfix: Don’t raise the active window when there is a fullscreen client

This commit is contained in:
Michael Stapelberg 2009-03-03 04:25:32 +01:00
parent a12ca34d1c
commit 1157229888

View File

@ -309,8 +309,10 @@ void render_container(xcb_connection_t *connection, Container *container) {
client->force_reconfigure = false; client->force_reconfigure = false;
if (container->workspace->fullscreen_client == NULL) {
uint32_t values[] = { XCB_STACK_MODE_ABOVE }; uint32_t values[] = { XCB_STACK_MODE_ABOVE };
xcb_configure_window(connection, client->frame, XCB_CONFIG_WINDOW_STACK_MODE, values); xcb_configure_window(connection, client->frame, XCB_CONFIG_WINDOW_STACK_MODE, values);
}
/* Render the decorations of all clients */ /* Render the decorations of all clients */
CIRCLEQ_FOREACH(client, &(container->clients), clients) CIRCLEQ_FOREACH(client, &(container->clients), clients)