also consider width for tile fallback enforcing
authorAnselm R. Garbe <garbeam@gmail.com>
Wed, 24 Oct 2007 20:34:08 +0200
changeset 1042 2a3f59cc8d2f
parent 1041 ee04fab6ff9c
child 1043 bcd7e18e196a
also consider width for tile fallback enforcing
dwm.c
--- a/dwm.c	Wed Oct 24 16:26:59 2007 +0200
+++ b/dwm.c	Wed Oct 24 20:34:08 2007 +0200
@@ -1596,7 +1596,8 @@
 				nh = th - 2 * c->border;
 		}
 		resize(c, nx, ny, nw, nh, True);
-		if((c->h < bh) || (c->h > nh)) /* client doesn't accept geometry */
+		if((c->h < bh) || (c->h > nh) || (c->w < bh) || (c->w > nw))
+			/* client doesn't accept geometry, so enforce it */
 			resize(c, nx, ny, nw, nh, False);
 		if(n > 1 && th != wah)
 			ny = c->y + c->h + 2 * c->border;