From 73ba2778abef0d010eb9824161eb97edeed52ee6 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 28 Feb 2015 12:05:04 +1000 Subject: Background images on GWIN containers had cx and cy interposed. --- src/gwin/gwin_container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gwin/gwin_container.c') diff --git a/src/gwin/gwin_container.c b/src/gwin/gwin_container.c index 3145ae56..f45af504 100644 --- a/src/gwin/gwin_container.c +++ b/src/gwin/gwin_container.c @@ -190,7 +190,7 @@ void gwinContainerDraw_Std(GWidgetObject *gw, void *param) { for(iw=gi->width; x < mx; x += iw) { if (iw > mx - x) iw = mx - x; - gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0); + gdispGImageDraw(gw->g.display, gi, x, y, iw, ih, 0, 0); } } -- cgit v1.2.3