diff options
| author | Anselm R Garbe <[email protected]> | 2008-06-21 13:49:43 +0100 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2008-06-21 13:49:43 +0100 |
| commit | deef4c9bfd7d88937822b689946bd65df7fc618d (patch) | |
| tree | b98983304decab5c79e650266727ae877c4bd343 | |
| parent | applied Gottox' ClkTagBar patch (diff) | |
| download | dwm-deef4c9bfd7d88937822b689946bd65df7fc618d.tar.gz dwm-deef4c9bfd7d88937822b689946bd65df7fc618d.tar.bz2 dwm-deef4c9bfd7d88937822b689946bd65df7fc618d.zip | |
fixed Gottox' buttonpress/ClkTagBar code
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c index a5a9de2..d4ce1e4 100644 --- a/dwm.c +++ b/dwm.c @@ -310,8 +310,8 @@ buttonpress(XEvent *e) { click = ClkRootWin; if(ev->window == barwin) { - for(i = x = 0; ev->x >= x && ++i < LENGTH(tags); i++) - x += TEXTW(tags[i]); + i = x = 0; + do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags)); if(i < LENGTH(tags)) { click = ClkTagBar; arg.ui = 1 << i; |