]> Dogcows Code - chaz/openbox/commitdiff
don't move parents and children over when inserting desktops - cuz then they all...
authorDana Jansens <danakj@orodu.net>
Sat, 21 Jul 2007 00:37:18 +0000 (20:37 -0400)
committerDana Jansens <danakj@orodu.net>
Sat, 21 Jul 2007 00:37:18 +0000 (20:37 -0400)
openbox/screen.c

index 6f51bc1b24ab45a34f7fe865b931b642cfa82c39..9bbd13d183181208873b0769fa1957882e28babe 100644 (file)
@@ -641,8 +641,14 @@ void screen_add_desktop(gboolean current)
 
         for (it = client_list; it; it = g_list_next(it)) {
             ObClient *c = it->data;
-            if (c->desktop != DESKTOP_ALL && c->desktop >= screen_desktop)
+            if (c->desktop != DESKTOP_ALL && c->desktop >= screen_desktop &&
+                /* don't move direct children, they'll be moved with their
+                   parent - which will have to be on the same desktop */
+                !client_direct_parent(c))
+            {
+                ob_debug("moving window %s\n", c->title);
                 client_set_desktop(c, c->desktop+1, FALSE, TRUE);
+            }
         }
     }
 }
@@ -670,9 +676,13 @@ void screen_remove_desktop(gboolean current)
         if (WINDOW_IS_CLIENT(it->data)) {
             ObClient *c = it->data;
             guint d = c->desktop;
-            if (d != DESKTOP_ALL && d >= movedesktop) {
-                client_set_desktop(c, c->desktop - 1, TRUE, TRUE);
+            if (d != DESKTOP_ALL && d >= movedesktop &&
+                /* don't move direct children, they'll be moved with their
+                   parent - which will have to be on the same desktop */
+                !client_direct_parent(c))
+            {
                 ob_debug("moving window %s\n", c->title);
+                client_set_desktop(c, c->desktop - 1, TRUE, TRUE);
             }
             /* raise all the windows that are on the current desktop which
                is being merged */
This page took 0.023917 seconds and 4 git commands to generate.