about summary refs log tree commit diff stats
path: root/view.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-10-05 18:18:47 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-10-05 18:18:47 +0200
commit0384faeee5308d992e60084dd6565c78e6e11af4 (patch)
treeb5eddead562013d72ac45870d0702f364c2cf2d9 /view.c
parent6cca3999c851770658d9223122f3789af1e2f8cd (diff)
downloaddwm-0384faeee5308d992e60084dd6565c78e6e11af4.tar.gz
changing MASTER value from percent into per mill
Diffstat (limited to 'view.c')
-rw-r--r--view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/view.c b/view.c
index 6ca82d1..1ca1027 100644
--- a/view.c
+++ b/view.c
@@ -110,12 +110,12 @@ dotile(Arg *arg) {
 		n++;
 
 	if(stackpos == StackBottom) {
-		md = ((sh - bh) * master) / 100;
+		md = ((sh - bh) * master) / 1000;
 		stackw = sw;
 		stackh = sh - bh - md;
 	}
 	else {
-		md = (sw * master) / 100;
+		md = (sw * master) / 1000;
 		stackw = sw - md;
 		stackh = sh - bh;
 	}