all repos — openbox @ 16df4538561f443d98fc7ed7bdb95ba674cf58c4

openbox fork - make it a bit more like ryudo

fix compile err
Dana Jansens danakj@orodu.net
commit

16df4538561f443d98fc7ed7bdb95ba674cf58c4

parent

8b7373cfca831950556511d349b89db46915ba60

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M src/screen.ccsrc/screen.cc

@@ -261,10 +261,12 @@ }

#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(); }