tapplied Gottox mwfact patch - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 7d156dee1e80f7d26aa0a31a6d2c75af06cbaa9a
(DIR) parent 55d8dda9f45503f25804a9dbfeb4c878284a6576
(HTM) Author: Anselm R. Garbe <garbeam@gmail.com>
Date: Sat, 18 Aug 2007 11:40:25 +0200
applied Gottox mwfact patch
Diffstat:
M tile.c | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
---
(DIR) diff --git a/tile.c b/tile.c
t@@ -10,7 +10,7 @@ static double mwfact = MWFACT;
void
setmwfact(const char *arg) {
- double delta, newfact;
+ double delta;
if(!isarrange(tile))
return;
t@@ -19,14 +19,13 @@ setmwfact(const char *arg) {
mwfact = MWFACT;
else if(1 == sscanf(arg, "%lf", &delta)) {
if(arg[0] != '+' && arg[0] != '-')
- newfact = delta;
+ mwfact = delta;
else
- newfact = mwfact + delta;
- if(newfact < 0.1)
- newfact = 0.1;
- else if(newfact > 0.9)
- newfact = 0.9;
- mwfact = newfact;
+ mwfact += delta;
+ if(mwfact < 0.1)
+ mwfact = 0.1;
+ else if(mwfact > 0.9)
+ mwfact = 0.9;
}
arrange();
}