cedric pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=23aa206fe1218d1ef060b2bdaf558b1f4a802153
commit 23aa206fe1218d1ef060b2bdaf558b1f4a802153 Author: Minkyu Kang <[email protected]> Date: Fri Mar 4 15:55:14 2016 -0800 image: fix the wrong return value Summary: Signed-off-by: Minkyu Kang <[email protected]> Reviewers: Hermet, cedric Reviewed By: cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3741 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/elm_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_image.c b/src/lib/elm_image.c index 4119004..92aacaa 100644 --- a/src/lib/elm_image.c +++ b/src/lib/elm_image.c @@ -597,7 +597,7 @@ _elm_image_resize_down_set(Eo *obj, Elm_Image_Data *sd, Eina_Bool resize_down) EOLIAN static Eina_Bool _elm_image_resize_down_get(Eo *obj EINA_UNUSED, Elm_Image_Data *sd) { - return sd->resize_up; + return sd->resize_down; } static Eina_Bool --
