]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Correctly stack windows when new windows are opened while in fullscreen mode
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Mar 2010 21:17:00 +0000 (22:17 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Mar 2010 21:18:26 +0000 (22:18 +0100)
This fixes ticket #195.

src/manage.c

index da5ec175a8f72fe6df4e5896c643559459a54540..6e39f51ce6d79752f40e9301da408774025098d3 100644 (file)
@@ -353,9 +353,15 @@ void reparent_window(xcb_connection_t *conn, xcb_window_t child,
         if (new->workspace->fullscreen_client != NULL) {
                 LOG("Setting below fullscreen window\n");
 
-                /* If we are in fullscreen, we should lower the window to not be annoying */
-                uint32_t values[] = { XCB_STACK_MODE_BELOW };
-                xcb_configure_window(conn, new->frame, XCB_CONFIG_WINDOW_STACK_MODE, values);
+                /* If we are in fullscreen, we should place the window below
+                 * the fullscreen window to not be annoying */
+                uint32_t values[] = {
+                        new->workspace->fullscreen_client->frame,
+                        XCB_STACK_MODE_BELOW
+                };
+                xcb_configure_window(conn, new->frame,
+                                     XCB_CONFIG_WINDOW_SIBLING |
+                                     XCB_CONFIG_WINDOW_STACK_MODE, values);
         }
 
         /* Insert into the currently active container, if it’s not a dock window */