resize and notify client when autogrouping
This commit is contained in:
parent
7d91183895
commit
4d6e5e3f1c
2 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
(Format: Year/Month/Day)
|
(Format: Year/Month/Day)
|
||||||
Changes for 0.9.16:
|
Changes for 0.9.16:
|
||||||
|
*06/04/26:
|
||||||
|
* Fix resizing of client window when autogroup from apps (Simon)
|
||||||
|
Window.cc
|
||||||
*06/04/25:
|
*06/04/25:
|
||||||
* Cleanup unneeded headers (thanks Semushin Slava)
|
* Cleanup unneeded headers (thanks Semushin Slava)
|
||||||
FbAtoms.cc Slit.cc Keys.cc FocusControl.cc FbTk/App.cc
|
FbAtoms.cc Slit.cc Keys.cc FocusControl.cc FbTk/App.cc
|
||||||
|
|
|
@ -678,6 +678,12 @@ void FluxboxWindow::attachClient(WinClient &client, int x, int y) {
|
||||||
} else { // client.fbwindow() == 0
|
} else { // client.fbwindow() == 0
|
||||||
associateClient(client);
|
associateClient(client);
|
||||||
|
|
||||||
|
moveResizeClient(client,
|
||||||
|
frame().clientArea().x(),
|
||||||
|
frame().clientArea().y(),
|
||||||
|
frame().clientArea().width(),
|
||||||
|
frame().clientArea().height());
|
||||||
|
|
||||||
if (&client == focused_win)
|
if (&client == focused_win)
|
||||||
was_focused = focused_win;
|
was_focused = focused_win;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue