diff options
| author | Anselm R.Garbe <[email protected]> | 2006-08-11 18:37:41 +0200 |
|---|---|---|
| committer | Anselm R.Garbe <[email protected]> | 2006-08-11 18:37:41 +0200 |
| commit | d7413ffd2d9a84fc3140b28b26f8cb6bb80164e4 (patch) | |
| tree | 7e7f0f998a77610178e91d57c175526332098abd /draw.c | |
| parent | after some days of experimenting with grey background, I finally give up and ... (diff) | |
| download | seiwm-d7413ffd2d9a84fc3140b28b26f8cb6bb80164e4.tar.xz seiwm-d7413ffd2d9a84fc3140b28b26f8cb6bb80164e4.zip | |
implement multi-tag selection through button3 click on the specific tag
Diffstat (limited to 'draw.c')
| -rw-r--r-- | draw.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |