diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-08-04 08:17:18 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-08-04 08:17:18 +0900 |
commit | a3e74139922e98fa8cca38ecb2eb9f25a16f4971 (patch) | |
tree | 14feeab437df7a64b4f7268175a8a1936fc0fba7 /src | |
parent | 1f48ce5f6b588ade04d37680e318622991ac48b5 (diff) |
elm image - silence warnings of setting smooth if image is edje
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/elementary/efl_ui_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_image.c b/src/lib/elementary/efl_ui_image.c index ba52cc92fe..f27d17f033 100644 --- a/src/lib/elementary/efl_ui_image.c +++ b/src/lib/elementary/efl_ui_image.c | |||
@@ -545,7 +545,7 @@ EOLIAN static void | |||
545 | _efl_ui_image_efl_image_smooth_scale_set(Eo *obj EINA_UNUSED, Efl_Ui_Image_Data *sd, Eina_Bool smooth) | 545 | _efl_ui_image_efl_image_smooth_scale_set(Eo *obj EINA_UNUSED, Efl_Ui_Image_Data *sd, Eina_Bool smooth) |
546 | { | 546 | { |
547 | sd->smooth = smooth; | 547 | sd->smooth = smooth; |
548 | evas_object_image_smooth_scale_set(sd->img, smooth); | 548 | if (!sd->edje) evas_object_image_smooth_scale_set(sd->img, smooth); |
549 | } | 549 | } |
550 | 550 | ||
551 | EOLIAN static Eina_Bool | 551 | EOLIAN static Eina_Bool |