wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 7166dd88365fe069d9fa3c48612299473d4d8317
parent 0d3b8a0b106d2655fb133fc70621ef6262930f3f
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Wed,  1 Mar 2006 11:32:38 +0100

fixed pager page number drawing issue


Diffstat:
cmd/wm/wm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/wm/wm.c b/cmd/wm/wm.c @@ -72,7 +72,7 @@ draw_pager_page(size_t idx, Draw *d) d->color = def.sel; else d->color = def.norm; - snprintf(name, sizeof(name), "%d", idx + 1); + snprintf(name, sizeof(name), "%d", idx); d->data = name; blitz_drawlabel(dpy, d); XSync(dpy, False);