Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
isfixed implies isfloating
[dwm.git]
/
dwm.c
diff --git
a/dwm.c
b/dwm.c
index
2851929
..
0dfb94e
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-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;
}