From: Dana Jansens Date: Mon, 3 Feb 2003 08:16:52 +0000 (+0000) Subject: fix compile err X-Git-Tag: openbox-2_3_0~24 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=16df4538561f443d98fc7ed7bdb95ba674cf58c4;p=mikachu%2Fopenbox.git fix compile err --- diff --git a/src/screen.cc b/src/screen.cc index 36e6ae0d..adcae6d9 100644 --- a/src/screen.cc +++ b/src/screen.cc @@ -261,10 +261,12 @@ void Screen::calcArea() #endif // XINERAMA */ - if (old_area != _area) + if (old_area != _area) { // the area has changed, adjust all the maximized windows + Client::List::iterator it, end = clients.end(); for (it = clients.begin(); it != end; ++it) (*it)->remaximize(); + } changeWorkArea(); }