Struct: Rename IgnoreNextExpose

This commit is contained in:
Martin Duquesnoy 2011-06-09 18:22:17 +02:00
parent 2a30083520
commit 4e978c1824
3 changed files with 4 additions and 4 deletions

View File

@ -280,7 +280,7 @@ client_focus(Client *c)
if(conf.raisefocus || c->flags & MaxFlag)
{
client_raise(c);
tags[c->screen][c->tag].flags |= IgnoreNextExpose;
tags[c->screen][c->tag].flags |= IgnoreEnterFlag;
}
if((tags[sel->screen][sel->tag].flags & AboveFCFlag)

View File

@ -372,9 +372,9 @@ enternotify(XEvent *e)
&& ev->window != ROOT)
return;
if(tags[selscreen][seltag[selscreen]].flags & IgnoreNextExpose)
if(tags[selscreen][seltag[selscreen]].flags & IgnoreEnterFlag)
{
tags[selscreen][seltag[selscreen]].flags &= ~IgnoreNextExpose;
tags[selscreen][seltag[selscreen]].flags &= ~IgnoreEnterFlag;
return;
}

View File

@ -67,7 +67,7 @@
#define StayLastFlag (1 << 6)
#define SplitFlag (1 << 7)
#define FirstArrangeFlag (1 << 8)
#define IgnoreNextExpose (1 << 9)
#define IgnoreEnterFlag (1 << 9)
#define TagFlag(t) (1 << (t))