resize and notify client when autogrouping

This commit is contained in:
simonb 2006-04-26 12:34:24 +00:00
parent 7d91183895
commit 4d6e5e3f1c
2 changed files with 9 additions and 0 deletions

View file

@ -1,5 +1,8 @@
(Format: Year/Month/Day)
Changes for 0.9.16:
*06/04/26:
* Fix resizing of client window when autogroup from apps (Simon)
Window.cc
*06/04/25:
* Cleanup unneeded headers (thanks Semushin Slava)
FbAtoms.cc Slit.cc Keys.cc FocusControl.cc FbTk/App.cc

View file

@ -678,6 +678,12 @@ void FluxboxWindow::attachClient(WinClient &client, int x, int y) {
} else { // client.fbwindow() == 0
associateClient(client);
moveResizeClient(client,
frame().clientArea().x(),
frame().clientArea().y(),
frame().clientArea().width(),
frame().clientArea().height());
if (&client == focused_win)
was_focused = focused_win;