all repos — fluxbox @ 87e401edf6146e4205bdfc807651a7d627a323db

custom fork of the fluxbox windowmanager

Fix DetachClient key command so new window is visible
markt markt
commit

87e401edf6146e4205bdfc807651a7d627a323db

parent

a23ad6719725a0290d01ac4bba0ce1905b2069d7

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

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 1.0rc2: +*06/06/25: + * Fix DetachClient key command so new window is visible (Mark) + Window.cc *06/06/24: * Make Urgency Hint flash the correct tab in a group (Mark) Ewmh.cc Window.cc/hh WinClient.cc/hh FbWinFrame.cc/hh IconbarTool.cc
M src/Window.ccsrc/Window.cc

@@ -773,7 +773,10 @@ void FluxboxWindow::detachCurrentClient() {

// should only operate if we had more than one client if (numClients() <= 1) return; + WinClient &client = *m_client; detachClient(*m_client); + if (client.fbwindow() != 0) + client.fbwindow()->show(); } /// removes client from client list, does not create new fluxboxwindow for it