[hackers] [dwm] it's all nsz's hard investigation effort, hail nsz! ;) || Anselm R Garbe

From: <hg_AT_suckless.org>
Date: Fri, 17 Jul 2009 12:35:54 +0000 (UTC)

changeset: 1466:aa47da304ae2
parent: 1464:555070221577
user: Anselm R Garbe <garbeam_AT_gmail.com>
date: Fri Jul 17 13:35:17 2009 +0100
files: config.mk dwm.c
description:
it's all nsz's hard investigation effort, hail nsz! ;)

diff -r 555070221577 -r aa47da304ae2 config.mk
--- a/config.mk Tue Jul 14 16:26:04 2009 +0100
+++ b/config.mk Fri Jul 17 13:35:17 2009 +0100
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 5.6
+VERSION = 5.7
 
 # Customize below to fit your system
 
diff -r 555070221577 -r aa47da304ae2 dwm.c
--- a/dwm.c Tue Jul 14 16:26:04 2009 +0100
+++ b/dwm.c Fri Jul 17 13:35:17 2009 +0100
@@ -350,9 +350,9 @@
                 /* 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 @@
         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;
Received on Fri Jul 17 2009 - 12:35:54 UTC

This archive was generated by hypermail 2.2.0 : Fri Jul 17 2009 - 12:36:05 UTC