about summary refs log tree commit diff stats
path: root/view.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-05 13:25:42 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-05 13:25:42 +0200
commit40bd21ce631073e7badd3d9617c273f44711c059 (patch)
treec9b54819d1fbd4c75d5be121ce510832444d26ad /view.c
parent4633fbec616d2f130dfd5d8677e103cf47d26c15 (diff)
downloaddwm-40bd21ce631073e7badd3d9617c273f44711c059.tar.gz
s/growcol/resizetile/g
Diffstat (limited to 'view.c')
-rw-r--r--view.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/view.c b/view.c
index 4c656f3..09ee497 100644
--- a/view.c
+++ b/view.c
@@ -169,8 +169,19 @@ focusprev(Arg *arg)
 	}
 }
 
+Bool
+isvisible(Client *c)
+{
+	unsigned int i;
+
+	for(i = 0; i < ntags; i++)
+		if(c->tags[i] && seltag[i])
+			return True;
+	return False;
+}
+
 void
-growcol(Arg *arg)
+resizetile(Arg *arg)
 {
 	Client *c = getnext(clients);
 
@@ -189,17 +200,6 @@ growcol(Arg *arg)
 	arrange(NULL);
 }
 
-Bool
-isvisible(Client *c)
-{
-	unsigned int i;
-
-	for(i = 0; i < ntags; i++)
-		if(c->tags[i] && seltag[i])
-			return True;
-	return False;
-}
-
 void
 restack()
 {