679f805abe
This reverts commit e6862bb55b
.
32 lines
855 B
Diff
32 lines
855 B
Diff
diff --git a/dwm.c b/dwm.c
|
|
index 5646a5c..27e29df 100644
|
|
--- a/dwm.c
|
|
+++ b/dwm.c
|
|
@@ -1283,12 +1283,26 @@ void
|
|
resizeclient(Client *c, int x, int y, int w, int h)
|
|
{
|
|
XWindowChanges wc;
|
|
+ unsigned int n;
|
|
+ Client *nbc;
|
|
|
|
c->oldx = c->x; c->x = wc.x = x;
|
|
c->oldy = c->y; c->y = wc.y = y;
|
|
c->oldw = c->w; c->w = wc.width = w;
|
|
c->oldh = c->h; c->h = wc.height = h;
|
|
wc.border_width = c->bw;
|
|
+
|
|
+ for (n = 0, nbc = nexttiled(c->mon->clients); nbc; nbc = nexttiled(nbc->next), n++);
|
|
+
|
|
+ if (c->isfloating || c->mon->lt[c->mon->sellt]->arrange == NULL) {
|
|
+ } else {
|
|
+ if (c->mon->lt[c->mon->sellt]->arrange == monocle || n == 1) {
|
|
+ wc.border_width = 0;
|
|
+ c->w = wc.width += c->bw * 2;
|
|
+ c->h = wc.height += c->bw * 2;
|
|
+ }
|
|
+ }
|
|
+
|
|
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
|
|
configure(c);
|
|
XSync(dpy, False);
|