From 92680a549d232545253235bd473f06d071fb7c2c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 19 Dec 2015 17:32:13 -0500 Subject: [PATCH] Oh I know why the green didn't show up; fixed. --- test/page7c.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/page7c.c b/test/page7c.c index 3e796f8f..1ebddad1 100644 --- a/test/page7c.c +++ b/test/page7c.c @@ -24,11 +24,11 @@ static void handlerDraw(uiAreaHandler *a, uiArea *area, uiAreaDrawParams *dp) memset(&brush, 0, sizeof (uiDrawBrush)); memset(&sp, 0, sizeof (uiDrawStrokeParams)); - // add some buffering to detect scrolls that aren't on the dot on Windows + // add some buffering to detect scrolls that aren't on the dot and draws that are outside the scroll area on Windows path = uiDrawNewPath(uiDrawFillModeWinding); uiDrawPathAddRectangle(path, -50, -50, - areaSize + 50, areaSize + 50); + areaSize + 100, areaSize + 100); uiDrawPathEnd(path); brush.Type = uiDrawBrushTypeSolid; brush.R = 0;