[Change] Maybe that off-by-one thing is sw mesa issues. :s

This commit is contained in:
Allanis 2013-04-23 22:03:34 +01:00
parent 1391fabc65
commit ccb954324c

View File

@ -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();
}