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

next
Michael Stapelberg 2009-03-03 04:25:32 +01:00
parent a12ca34d1c
commit 1157229888
1 changed files with 4 additions and 2 deletions

View File

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