Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
renamed resizetile into resizecol
[dwm.git]
/
view.c
diff --git
a/view.c
b/view.c
index
4c656f3
..
4b4c9eb
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
void
-
grow
col(Arg *arg)
+
resize
col(Arg *arg)
{
Client *c = getnext(clients);
{
Client *c = getnext(clients);
@@
-189,17
+200,6
@@
growcol(Arg *arg)
arrange(NULL);
}
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()
{
void
restack()
{