On Tue, Apr 21, 2015 at 11:37 PM, Markus Teich <[email protected]> wrote: > + if (filled) > + XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
I think this should be: XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w + 1, h + 1); (see diffed code). Kind regards, HIltjo
