fix focus after tabbing
Mark Tiefenbruck mark@fluxbox.org
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
src/FocusControl.cc
→
src/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;