fixed Gottox' buttonpress/ClkTagBar code - dwm - dynamic window manager
HTML git clone https://git.parazyd.org/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit deef4c9bfd7d88937822b689946bd65df7fc618d
DIR parent b86c818599f8fecd42bcde564686b2489196d7ab
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Sat, 21 Jun 2008 13:49:43 +0100
fixed Gottox' buttonpress/ClkTagBar code
Diffstat:
M dwm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git 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;