From: Mikael Magnusson Date: Thu, 12 Aug 2010 19:15:02 +0000 (+0200) Subject: Comment a SECOND place clients are moved onscreen in the same codepath on xrandr X-Git-Tag: mikabox-3.5-7~37^2 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=2abf9528ab7677d159f78dab9d6629e6e61e26e2;p=mikachu%2Fopenbox.git Comment a SECOND place clients are moved onscreen in the same codepath on xrandr --- diff --git a/openbox/screen.c b/openbox/screen.c index 349a7e0a..d4244af0 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -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); }