X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=view.c;h=09ee49785e9faccc4ed7d49b9a81cf560373978f;hb=40bd21ce631073e7badd3d9617c273f44711c059;hp=4c656f31d31c6df7abfa6b001fb325b739e8232b;hpb=4633fbec616d2f130dfd5d8677e103cf47d26c15;p=dwm.git 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() {