aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-07-17 13:35:17 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-07-17 13:35:17 +0100
commit6877a00033f4785049928bfe7e98d754e1c757a9 (patch)
treeaa4a47701b189022d4bd5e5804d2944da7b23f79 /dwm.c
parent450b08dde2409846201175e226158ad4e2c61ea1 (diff)
downloaddwm-6877a00033f4785049928bfe7e98d754e1c757a9.tar.gz
it's all nsz's hard investigation effort, hail nsz! ;)
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dwm.c b/dwm.c
index 71d7e63..289b508 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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;
+ *w = *h * c->maxa + 0.5; /* -Os double upcast workaround */
else if(c->mina < (float)*h / *w)
- *h = *w * c->mina;
+ *h = *w * c->mina + 0.5; /* -Os double upcast workaround */
}
if(baseismin) { /* increment calculation requires this */
*w -= c->basew;
@@ -1807,8 +1807,8 @@ updatesizehints(Client *c) {
else
c->minw = c->minh = 0;
if(size.flags & PAspect) {
- c->mina = (float)size.min_aspect.y / (float)size.min_aspect.x;
- c->maxa = (float)size.max_aspect.x / (float)size.max_aspect.y;
+ c->mina = (float)size.min_aspect.y / size.min_aspect.x;
+ c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
}
else
c->maxa = c->mina = 0.0;
remember that computers suck.