| tapplied Peter Hartlichs aspect revert fix - dwm - [fork] customized build of d… | |
| git clone git://src.adamsgaard.dk/dwm | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 30410108eb7e9e8b977d448f611659d58b2a6992 | |
| parent 753e0e048e13fe7cbace7c07917d26081a483eba | |
| Author: Anselm R Garbe <[email protected]> | |
| Date: Tue, 2 Sep 2008 22:36:06 +0100 | |
| applied Peter Hartlichs aspect revert fix | |
| Diffstat: | |
| M dwm.c | 4 ++-- | |
| 1 file changed, 2 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/dwm.c b/dwm.c | |
| t@@ -1056,9 +1056,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizeh… | |
| /* 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; | |
| } | |