all repos — fluxbox @ 7a79953f04cb236a2fa662d841eacf3b572eb505

custom fork of the fluxbox windowmanager

fix detach focus again  8)
markt markt
commit

7a79953f04cb236a2fa662d841eacf3b572eb505

parent

8a640f8d638d1f330f816a2ed00931ba2d01847d

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

jump to
M src/Screen.ccsrc/Screen.cc

@@ -1413,8 +1413,9 @@ delete win;

return 0; } + // can't setInputFocus yet and mapNotifyEvent doesn't happen for the client if (focusControl().focusNew() || FocusControl::focusedWindow() == &client) - win->setInputFocus(); + FocusControl::setFocusedWindow(&client); m_clientlist_sig.notify();
M src/Window.ccsrc/Window.cc

@@ -764,7 +764,6 @@

// m_client must be valid as there should be at least one other window // otherwise this wouldn't be here (refer numClients() <= 1 return) client.setFluxboxWindow(screen().createWindow(client)); - m_client->raise(); return true; }