all repos — fluxbox @ 4d6e5e3f1cc47f85b228a476134f572cf277c152

custom fork of the fluxbox windowmanager

resize and notify client when autogrouping
simonb simonb
commit

4d6e5e3f1cc47f85b228a476134f572cf277c152

parent

7d9118389577bd9a356820cbe7d23ab3ed020181

2 files changed, 9 insertions(+), 0 deletions(-)

jump to
M ChangeLogChangeLog

@@ -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
M src/Window.ccsrc/Window.cc

@@ -678,6 +678,12 @@

} 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;