Introduction
Introduction Statistics Contact Development Disclaimer Help
dwm crashes when opening 50+ clients (tile layout) - dwm - dynamic window manag…
git clone git://git.suckless.org/dwm
Log
Files
Refs
README
LICENSE
---
commit f09418bbb6651ab4c299cfefbe1d18de401f630e
parent ed3ab6b4fceded0e9f2d22372df49a2bbd58de66
Author: bakkeby <[email protected]>
Date: Thu, 23 Apr 2020 09:50:54 +0200
dwm crashes when opening 50+ clients (tile layout)
Many users new to dwm find themselves caught out by being kicked out to the log…
The cause of this is due to how the default tile layout calculates the height o…
This patch adds safeguards to prevent the ty and my positions from exceeding th…
Diffstat:
M dwm.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/dwm.c b/dwm.c
@@ -1689,11 +1689,13 @@ tile(Monitor *m)
if (i < m->nmaster) {
h = (m->wh - my) / (MIN(n, m->nmaster) - i);
resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c-…
- my += HEIGHT(c);
+ if (my + HEIGHT(c) < m->wh)
+ my += HEIGHT(c);
} else {
h = (m->wh - ty) / (n - i);
resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->b…
- ty += HEIGHT(c);
+ if (ty + HEIGHT(c) < m->wh)
+ ty += HEIGHT(c);
}
}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.