Fix client flick at untab when free, split arrange closed with free mode

This commit is contained in:
Martin Duquesnoy
2012-01-29 05:18:51 +01:00
parent 3361a3b8bc
commit 8f52715fe3
4 changed files with 11 additions and 1 deletions

View File

@@ -64,6 +64,8 @@ event_enternotify(XEvent *e)
{
if(c->flags & CLIENT_IGNORE_ENTER)
c->flags ^= CLIENT_IGNORE_ENTER;
else if(c->tag->flags & TAG_IGNORE_ENTER)
c->tag->flags ^= TAG_IGNORE_ENTER;
else if(c != W->client && !(c->flags & CLIENT_TABBED))
client_focus(c);
}