diff options
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 24 |
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() { |