tanother merge - dwm - [fork] customized build of dwm, the dynamic window manager
HTML git clone git://src.adamsgaard.dk/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 277155cf775369ad9645e68da59339acdc8f1117
DIR parent 0c38ec7cd64dfc0bebccfcb0da2a2d250bf5f46e
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Sun, 22 Jun 2008 09:29:35 +0100
another merge
Diffstat:
M dwm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/dwm.c b/dwm.c
t@@ -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;