Browse Source

simplify isfixed conditions

master
Daniel Cousens 7 years ago
committed by Anselm R Garbe
parent
commit
6aa8e37efe
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      dwm.c

+ 1
- 2
dwm.c View File

@ -1981,8 +1981,7 @@ updatesizehints(Client *c)
c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
} else
c->maxa = c->mina = 0.0;
c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
&& c->maxw == c->minw && c->maxh == c->minh);
c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
}
void


Loading…
Cancel
Save