Struct: Rename IgnoreNextExpose
This commit is contained in:
parent
2a30083520
commit
4e978c1824
@ -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)
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -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))
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user