view.c
changeset 529 e2bd83191fc6
parent 528 c0fffe6c207e
child 530 451f19d48845
--- a/view.c	Thu Oct 05 18:18:47 2006 +0200
+++ b/view.c	Thu Oct 05 18:23:28 2006 +0200
@@ -248,12 +248,12 @@
 		return;
 
 	if(sel == getnext(clients)) {
-		if(master + arg->i > 95 || master + arg->i < 5)
+		if(master + arg->i > 950 || master + arg->i < 50)
 			return;
 		master += arg->i;
 	}
 	else {
-		if(master - arg->i > 95 || master - arg->i < 5)
+		if(master - arg->i > 950 || master - arg->i < 50)
 			return;
 		master -= arg->i;
 	}