aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-08-18 17:10:56 +0200
committerJoel Bodenmann <joel@unormal.org>2014-08-18 17:10:56 +0200
commit301f134b9034170e6e26aa307e5ede741db1cf70 (patch)
tree93b535f4fb274936aa23d7e100b21389e9739811
parent14075df6989eed0c60f34ac3eeee37ff002b0db8 (diff)
downloaduGFX-301f134b9034170e6e26aa307e5ede741db1cf70.tar.gz
uGFX-301f134b9034170e6e26aa307e5ede741db1cf70.tar.bz2
uGFX-301f134b9034170e6e26aa307e5ede741db1cf70.zip
whitespaces
-rw-r--r--src/gwin/frame.c4
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);