aewl

diff view.c @ 395:7528080beb0e

added viewall to mainstream (only Ross Mohns version, not the toggle)
author Anselm R. Garbe <arg@10kloc.org>
date Thu, 31 Aug 2006 18:02:38 +0200
parents 6786cd59468f
children cb8a231610c7
line diff
     1.1 --- a/view.c	Thu Aug 31 17:49:04 2006 +0200
     1.2 +++ b/view.c	Thu Aug 31 18:02:38 2006 +0200
     1.3 @@ -274,6 +274,16 @@
     1.4  }
     1.5  
     1.6  void
     1.7 +viewall(Arg *arg)
     1.8 +{
     1.9 +	unsigned int i;
    1.10 +
    1.11 +	for(i = 0; i < ntags; i++)
    1.12 +		seltag[i] = True;
    1.13 +	arrange(NULL);
    1.14 +}
    1.15 +
    1.16 +void
    1.17  zoom(Arg *arg)
    1.18  {
    1.19  	Client *c = sel;