dont refocus the focused window, that just causes so many problems (with alt-tab :)

This commit is contained in:
Dana Jansens 2003-05-23 20:17:22 +00:00
parent f68eb1fc25
commit b1fe0dbbc2

View file

@ -581,8 +581,10 @@ static void event_handle_client(Client *client, XEvent *e)
#ifdef DEBUG_FOCUS
g_message("FocusIn on client for %lx", client->window);
#endif
focus_set_client(client);
frame_adjust_focus(client->frame, TRUE);
if (client != focus_client) {
focus_set_client(client);
frame_adjust_focus(client->frame, TRUE);
}
break;
case FocusOut:
#ifdef DEBUG_FOCUS