diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-11 19:26:12 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-11 19:26:12 +0200 |
commit | 292ccc4c43d9529cb6db0973fcab6e24c73607a5 (patch) | |
tree | 55e0deb6352d8f2c967b38105d13ca1e3454fe95 /draw.c | |
parent | d7413ffd2d9a84fc3140b28b26f8cb6bb80164e4 (diff) | |
download | dwm-292ccc4c43d9529cb6db0973fcab6e24c73607a5.tar.gz |
implemented viewextend and added M-S-C-n shortcuts for extending the current view... updated man page (works great!) nice feature
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/draw.c b/draw.c index bdbe85a..3b6967c 100644 --- a/draw.c +++ b/draw.c @@ -109,9 +109,9 @@ drawstatus() dc.x += dc.w; dc.w = textw(tags[i]); if(istile) - drawtext(tags[i], tsel[i]); + drawtext(tags[i], seltag[i]); else - drawtext(tags[i], !tsel[i]); + drawtext(tags[i], !seltag[i]); } x = dc.x + dc.w; dc.w = textw(stext); |