commit 3b01488153994d6936169165943470ba6e4303f3
parent 657ff52958d01992c14ec2ea3ac5e1998b87d2e1
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Fri, 19 May 2006 19:39:32 +0200
fixed wmiimenu bug (also in wmii-3 repo)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wmiimenu.c b/cmd/wmiimenu.c
@@ -71,7 +71,7 @@ update_offsets()
tw = blitz_textwidth(dpy, &draw.font, item.data[i]);
if(tw > mrect.width / 3)
tw = mrect.width / 3;
- w += tw;
+ w += tw + mrect.height;
if(w > mrect.width)
break;
}