diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-08-18 17:10:56 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-08-18 17:10:56 +0200 |
commit | 301f134b9034170e6e26aa307e5ede741db1cf70 (patch) | |
tree | 93b535f4fb274936aa23d7e100b21389e9739811 | |
parent | 14075df6989eed0c60f34ac3eeee37ff002b0db8 (diff) | |
download | uGFX-301f134b9034170e6e26aa307e5ede741db1cf70.tar.gz uGFX-301f134b9034170e6e26aa307e5ede741db1cf70.tar.bz2 uGFX-301f134b9034170e6e26aa307e5ede741db1cf70.zip |
whitespaces
-rw-r--r-- | src/gwin/frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/frame.c b/src/gwin/frame.c index ec0bf632..f24ad569 100644 --- a/src/gwin/frame.c +++ b/src/gwin/frame.c @@ -304,10 +304,10 @@ void gwinFrameDraw_Std(GWidgetObject *gw, void *param) { // Draw the client area by tiling the image mx = gw->g.x+gw->g.width - BORDER_R; my = gw->g.y+gw->g.height - BORDER_B; - for(y = gw->g.y+BORDER_T, ih=gi->height; y < my; y += ih) { + for(y = gw->g.y+BORDER_T, ih = gi->height; y < my; y += ih) { if (ih > my - y) ih = my - y; - for(x = gw->g.x+BORDER_L; iw=gi->width; x < mx; x += iw) { + for(x = gw->g.x+BORDER_L; 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); |