aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnselm R Garbe <anselm@garbe.us>2009-07-18 12:28:31 +0200
committerAnselm R Garbe <anselm@garbe.us>2009-07-18 12:28:31 +0200
commitdfecd4619074e305e2107b5676bd0486bbb78a8c (patch)
treec458372090afe2fd8d7ec18e76a2a8979ca0e7da
parent5bc4db0f7606f098a9d7309fef080f4e95ebf2f1 (diff)
parent999d6e795f26f85e4b4b59adb7637ec067a9deee (diff)
downloaddwm-dfecd4619074e305e2107b5676bd0486bbb78a8c.tar.zst
merge
-rw-r--r--config.mk2
-rw-r--r--dwm.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/config.mk b/config.mk
index 3fcfd2f..086424d 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
# dwm version
-VERSION = 5.6
+VERSION = 5.7
# Customize below to fit your system
diff --git a/dwm.c b/dwm.c
index 71d7e63..e22ea7a 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;
else if(c->mina < (float)*h / *w)
- *h = *w * c->mina;
+ *h = *w * c->mina + 0.5;
}
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;