implement multi-tag selection through button3 click on the specific tag
This commit is contained in:
parent
50729a2e73
commit
d7413ffd2d
6 changed files with 48 additions and 17 deletions
4
draw.c
4
draw.c
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue