all repos — fluxbox @ 79eadb258f8cb975b4984e56b1f061b9d3e02dd5

custom fork of the fluxbox windowmanager

fix focus after tabbing
Mark Tiefenbruck mark@fluxbox.org
commit

79eadb258f8cb975b4984e56b1f061b9d3e02dd5

parent

6a72474185a91044894f51c17b84398abc94a123

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

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

@@ -521,7 +521,8 @@ }

void FocusControl::setFocusedWindow(WinClient *client) { - if (client == s_focused_window) + if (client == s_focused_window && + (!client || client->fbwindow() == s_focused_fbwindow)) return; BScreen *screen = client ? &client->screen() : 0;