isfixed implies isfloating

This commit is contained in:
Anselm R Garbe 2008-05-30 23:03:03 +01:00
parent 75690c808d
commit d589f7679a
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -267,7 +267,7 @@ arrange(void) {
XMoveResizeWindow(dpy, c->win, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw);
c->ismoved = True;
}
else if(!lt->arrange || ismax || c->isfloating)
else if(!lt->arrange || c->isfloating)
resize(c, c->x, c->y, c->w, c->h, True);
c->isbanned = False;
}