Mercurial > aewl
comparison 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 |
comparison
equal
deleted
inserted
replaced
394:1da9a6b94ca9 | 395:7528080beb0e |
---|---|
268 | 268 |
269 for(i = 0; i < ntags; i++) | 269 for(i = 0; i < ntags; i++) |
270 seltag[i] = False; | 270 seltag[i] = False; |
271 seltag[arg->i] = True; | 271 seltag[arg->i] = True; |
272 reorder(); | 272 reorder(); |
273 arrange(NULL); | |
274 } | |
275 | |
276 void | |
277 viewall(Arg *arg) | |
278 { | |
279 unsigned int i; | |
280 | |
281 for(i = 0; i < ntags; i++) | |
282 seltag[i] = True; | |
273 arrange(NULL); | 283 arrange(NULL); |
274 } | 284 } |
275 | 285 |
276 void | 286 void |
277 zoom(Arg *arg) | 287 zoom(Arg *arg) |