whitespaces
This commit is contained in:
parent
14075df698
commit
301f134b90
1 changed files with 2 additions and 2 deletions
|
@ -304,10 +304,10 @@ void gwinFrameDraw_Std(GWidgetObject *gw, void *param) {
|
||||||
// Draw the client area by tiling the image
|
// Draw the client area by tiling the image
|
||||||
mx = gw->g.x+gw->g.width - BORDER_R;
|
mx = gw->g.x+gw->g.width - BORDER_R;
|
||||||
my = gw->g.y+gw->g.height - BORDER_B;
|
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)
|
if (ih > my - y)
|
||||||
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)
|
if (iw > mx - x)
|
||||||
iw = mx - x;
|
iw = mx - x;
|
||||||
gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);
|
gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue