implement multi-tag selection through button3 click on the specific tag

This commit is contained in:
Anselm R.Garbe
2006-08-11 18:37:41 +02:00
parent 50729a2e73
commit d7413ffd2d
6 changed files with 48 additions and 17 deletions

4
draw.c
View File

@ -109,9 +109,9 @@ drawstatus()
dc.x += dc.w;
dc.w = textw(tags[i]);
if(istile)
drawtext(tags[i], (i == tsel));
drawtext(tags[i], tsel[i]);
else
drawtext(tags[i], (i != tsel));
drawtext(tags[i], !tsel[i]);
}
x = dc.x + dc.w;
dc.w = textw(stext);