aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/Window.cc6
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 40cc51c..665cc27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1(Format: Year/Month/Day) 1(Format: Year/Month/Day)
2Changes for 0.9.16: 2Changes for 0.9.16:
3*06/04/26:
4 * Fix resizing of client window when autogroup from apps (Simon)
5 Window.cc
3*06/04/25: 6*06/04/25:
4 * Cleanup unneeded headers (thanks Semushin Slava) 7 * Cleanup unneeded headers (thanks Semushin Slava)
5 FbAtoms.cc Slit.cc Keys.cc FocusControl.cc FbTk/App.cc 8 FbAtoms.cc Slit.cc Keys.cc FocusControl.cc FbTk/App.cc
diff --git a/src/Window.cc b/src/Window.cc
index 31f4374..8009248 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -678,6 +678,12 @@ void FluxboxWindow::attachClient(WinClient &client, int x, int y) {
678 } else { // client.fbwindow() == 0 678 } else { // client.fbwindow() == 0
679 associateClient(client); 679 associateClient(client);
680 680
681 moveResizeClient(client,
682 frame().clientArea().x(),
683 frame().clientArea().y(),
684 frame().clientArea().width(),
685 frame().clientArea().height());
686
681 if (&client == focused_win) 687 if (&client == focused_win)
682 was_focused = focused_win; 688 was_focused = focused_win;
683 689