about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-11 19:26:12 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-11 19:26:12 +0200
commit292ccc4c43d9529cb6db0973fcab6e24c73607a5 (patch)
tree55e0deb6352d8f2c967b38105d13ca1e3454fe95 /draw.c
parentd7413ffd2d9a84fc3140b28b26f8cb6bb80164e4 (diff)
downloaddwm-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.c4
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);