removed misleading comment

This commit is contained in:
Anselm R Garbe 2009-07-17 15:28:07 +01:00
parent 636075297c
commit 999d6e795f
1 changed files with 2 additions and 2 deletions

4
dwm.c
View File

@ -350,9 +350,9 @@ applysizehints(Client *c, int *x, int *y, int *w, int *h, Bool interact) {
/* adjust for aspect limits */
if(c->mina > 0 && c->maxa > 0) {
if(c->maxa < (float)*w / *h)
*w = *h * c->maxa + 0.5; /* -Os double upcast workaround */
*w = *h * c->maxa + 0.5;
else if(c->mina < (float)*h / *w)
*h = *w * c->mina + 0.5; /* -Os double upcast workaround */
*h = *w * c->mina + 0.5;
}
if(baseismin) { /* increment calculation requires this */
*w -= c->basew;