Introduction
Introduction Statistics Contact Development Disclaimer Help
tyet another cleanup - dwm - [fork] customized build of dwm, the dynamic window…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 0e21794e02069ae71a1e70f8d0c2c22c4d1050bc
parent d477fb69270cb1cce9a065d51e959206a28ba0f9
Author: Anselm R Garbe <[email protected]>
Date: Thu, 3 Apr 2008 14:39:19 +0100
yet another cleanup
Diffstat:
M dwm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/dwm.c b/dwm.c
t@@ -1191,9 +1191,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizeh…
if(c->minax != c->maxax && c->minay != c->maxay
&& c->minax > 0 && c->maxax > 0 && c->minay > 0 && c->maxay > …
{
- if (w * c->maxay > h * c->maxax)
+ if(w * c->maxay > h * c->maxax)
w = h * c->maxax / c->maxay;
- else if (w * c->minay < h * c->minax)
+ else if(w * c->minay < h * c->minax)
h = w * c->minay / c->minax;
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.