From 0ab44366ea461e3a65ccfcd6ef59d96c40f0484e Mon Sep 17 00:00:00 2001 From: Allanis Date: Mon, 22 Apr 2013 14:53:38 +0100 Subject: [PATCH] [Change] Minor map tweak. --- src/toolkit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/toolkit.c b/src/toolkit.c index 264d609..5f6fdb7 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+1, y+1, cst->w, cst->h); - (*cst->dat.cst.render) (x, y, cst->w, cst->h); + toolkit_clip(x, y+1, cst->w, cst->h); + (*cst->dat.cst.render) (x, y, cst->w, cst->h+1); toolkit_unclip(); }