applied Peter Hartlichs aspect revert fix

This commit is contained in:
Anselm R Garbe 2008-09-02 22:36:06 +01:00
parent 753e0e048e
commit 30410108eb
1 changed files with 2 additions and 2 deletions

4
dwm.c
View File

@ -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;
}