diff --git a/src/toolkit.c b/src/toolkit.c index 5f6fdb7..c5d8f0f 100644 --- a/src/toolkit.c +++ b/src/toolkit.c @@ -1013,8 +1013,8 @@ static void toolkit_renderCust(Widget* cst, double bx, double by) { toolkit_colDark, NULL); } - toolkit_clip(x, y+1, cst->w, cst->h); - (*cst->dat.cst.render) (x, y, cst->w, cst->h+1); + toolkit_clip(x, y, cst->w, cst->h); + (*cst->dat.cst.render) (x, y, cst->w, cst->h); toolkit_unclip(); }