summaryrefslogtreecommitdiffhomepage
path: root/dwm.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-10-19 13:08:26 +0200
committerbakkeby <[email protected]>2020-10-19 13:08:26 +0200
commitc6c2f0109f69d851792714dbabfd668752f21953 (patch)
tree01eb59af1233ecdfeef26640c5217917a43a3d86 /dwm.c
parentff78e407a5ec6d5a804f54ec6bfd71c30fc8b776 (diff)
downloaddwm-flexipatch-c6c2f0109f69d851792714dbabfd668752f21953.tar.gz
dwm-flexipatch-c6c2f0109f69d851792714dbabfd668752f21953.zip
noborder: the recorded height and width of the client should most likely not be changed when noborder is in effect
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 2d4e7c2..50ccb38 100644
--- a/dwm.c
+++ b/dwm.c
@@ -2632,8 +2632,8 @@ resizeclient(Client *c, int x, int y, int w, int h)
#endif // FAKEFULLSCREEN_CLIENT_PATCH
&& !c->isfloating
&& c->mon->lt[c->mon->sellt]->arrange) {
- c->w = wc.width += c->bw * 2;
- c->h = wc.height += c->bw * 2;
+ wc.width += c->bw * 2;
+ wc.height += c->bw * 2;
wc.border_width = 0;
}
#endif // NOBORDER_PATCH