reducing focus calls (sanders patch)
This commit is contained in:
parent
26157e6973
commit
d39d00057c
10
view.c
10
view.c
@ -68,9 +68,8 @@ dofloat(Arg *arg)
|
||||
else
|
||||
ban(c);
|
||||
}
|
||||
if(!(fc = sel) || !isvisible(fc))
|
||||
fc = getnext(clients);
|
||||
focus(fc);
|
||||
if(!sel || !isvisible(sel))
|
||||
focus(getnext(clients));
|
||||
restack();
|
||||
}
|
||||
|
||||
@ -131,9 +130,8 @@ dotile(Arg *arg)
|
||||
else
|
||||
ban(c);
|
||||
}
|
||||
if(!(fc = sel) || !isvisible(fc))
|
||||
fc = getnext(clients);
|
||||
focus(fc);
|
||||
if(!sel || !isvisible(sel))
|
||||
focus(getnext(clients));
|
||||
restack();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user