JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
s/growcol/resizetile/g
[dwm.git] / view.c
diff --git a/view.c b/view.c
index 4c656f3..09ee497 100644 (file)
--- 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()
 {