adding some prevention that master clients get smaller than bh - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit d939f301fa5ee472f2b089496b5e873ec155fa8e DIR parent 8c4623da80af2e25e3f0d15f56598624f4f37d5d HTML Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 5 Jan 2007 15:16:39 +0100 adding some prevention that master clients get smaller than bh Diffstat: M view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/view.c b/view.c @@ -192,9 +192,10 @@ focusprev(Arg *arg) { void incnmaster(Arg *arg) { - if(nmaster + arg->i < 1) + if(nmaster + arg->i < 1 || (wah / (nmaster + arg->i) < bh)) return; nmaster += arg->i; + arrange(); }