Comment a SECOND place clients are moved onscreen in the same codepath on xrandr
authorMikael Magnusson <mikachu@gmail.com>
Thu, 12 Aug 2010 19:15:02 +0000 (21:15 +0200)
committerMikael Magnusson <mikachu@gmail.com>
Sun, 19 Sep 2010 15:55:23 +0000 (17:55 +0200)
openbox/screen.c

index 349a7e0ae875981a844d9946f86665557f71b443..d4244af0ade570d681d8d4c62234d3ea03940d76 100644 (file)
@@ -508,6 +508,7 @@ void screen_resize(void)
     screen_update_areas();
     dock_configure();
 
+    // bug: this is done in screen_update_areas() already
 //    for (it = client_list; it; it = g_list_next(it))
 //        client_move_onscreen(it->data, FALSE);
 }
@@ -1465,7 +1466,7 @@ void screen_update_areas(void)
 
     /* the area has changed, adjust all the windows if they need it */
     for (it = onscreen; it; it = g_list_next(it)) {
-        client_move_onscreen(it->data, FALSE);
+        //client_move_onscreen(it->data, FALSE);
         client_reconfigure(it->data, FALSE);
     }