Browse Source

isfixed implies isfloating

master
Anselm R Garbe 16 years ago
parent
commit
d589f7679a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dwm.c

+ 1
- 1
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;
}


Loading…
Cancel
Save