diff options
author | simonb <simonb> | 2006-04-26 12:34:24 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-26 12:34:24 (GMT) |
commit | 4d6e5e3f1cc47f85b228a476134f572cf277c152 (patch) | |
tree | 12f61aba59d1068362b2e961287c432333f005c8 /src/Window.cc | |
parent | 7d9118389577bd9a356820cbe7d23ab3ed020181 (diff) | |
download | fluxbox-4d6e5e3f1cc47f85b228a476134f572cf277c152.zip fluxbox-4d6e5e3f1cc47f85b228a476134f572cf277c152.tar.bz2 |
resize and notify client when autogrouping
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 6 |
1 files changed, 6 insertions, 0 deletions
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 | ||