fix focus after tabbing
This commit is contained in:
parent
6a72474185
commit
79eadb258f
1 changed files with 2 additions and 1 deletions
|
@ -521,7 +521,8 @@ void FocusControl::unfocusWindow(WinClient &client,
|
|||
|
||||
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue