image: Fix formatting for the latest commit 283988.

This commit is contained in:
Daniel Juyung Seo 2014-12-19 02:36:16 +09:00
parent ec9f950aa3
commit 82eb0a210c
1 changed files with 2 additions and 2 deletions

View File

@ -184,8 +184,8 @@ _elm_image_internal_sizing_eval(Evas_Object *obj, Elm_Image_Data *sd)
evas_object_move(sd->img, x, y);
evas_object_image_fill_set(sd->img, 0, 0, w, h);
if (x < 0) w+=x;
if (y < 0) h+=y;
if (x < 0) w += x;
if (y < 0) h += y;
evas_object_resize(sd->img, w, h);
}