applied anudots [un]ban repair patch
This commit is contained in:
parent
b3419f49a3
commit
5a1a2edf0e
3
client.c
3
client.c
|
@ -216,8 +216,7 @@ manage(Window w, XWindowAttributes *wa) {
|
|||
c->isfloating = (rettrans == Success) || c->isfixed;
|
||||
attach(c);
|
||||
attachstack(c);
|
||||
c->isbanned = True;
|
||||
XMoveWindow(dpy, w, c->x + 2 * sw, c->y);
|
||||
ban(c);
|
||||
XMapWindow(dpy, w);
|
||||
setclientstate(c, NormalState);
|
||||
focus(c);
|
||||
|
|
4
layout.c
4
layout.c
|
@ -88,9 +88,7 @@ floating(void) {
|
|||
|
||||
for(c = clients; c; c = c->next)
|
||||
if(isvisible(c)) {
|
||||
if(c->isbanned)
|
||||
XMoveWindow(dpy, c->win, c->x, c->y);
|
||||
c->isbanned = False;
|
||||
unban(c);
|
||||
resize(c, c->x, c->y, c->w, c->h, True);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue