JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied Peter Hartlichs aspect revert fix
authorAnselm R Garbe <garbeam@gmail.com>
Tue, 2 Sep 2008 21:36:06 +0000 (22:36 +0100)
committerAnselm R Garbe <garbeam@gmail.com>
Tue, 2 Sep 2008 21:36:06 +0000 (22:36 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index bdef755..4ed5760 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -1056,9 +1056,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
 
                /* adjust for aspect limits */
                if(c->mina > 0 && c->maxa > 0) {
-                       if(c->maxa < (float)(w / h))
+                       if(c->maxa < (float)w / h)
                                w = h * c->maxa;
-                       else if(c->mina < (float)(h / w))
+                       else if(c->mina < (float)h / w)
                                h = w * c->mina;
                }