diff options
author | Sungtaek Hong <sth253.hong@samsung.com> | 2017-12-18 17:33:49 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-12-18 20:49:46 +0900 |
commit | a2309c5083a643011b4e69347d6be4da3a0adee8 (patch) | |
tree | a3995f0c91782e9a92cdf5b85d0d8cd3e4f61fed /src/lib/elementary/efl_ui_widget_image.h | |
parent | 81ba035f6935128b2c025c88de05cf2b8f2c0ead (diff) |
efl_ui_image: apply load_size when API is called
Summary:
when efl_image_load_size_set() is called, image only sets
internal variable and not apply to the internal image.
elm_image_prescale_set() is also affected.
Test Plan: Run elementary_test->Image Prescale
Reviewers: jpeg, eunue, woohyun
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D5645
Diffstat (limited to 'src/lib/elementary/efl_ui_widget_image.h')
-rw-r--r-- | src/lib/elementary/efl_ui_widget_image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_widget_image.h b/src/lib/elementary/efl_ui_widget_image.h index 88759c4a13..e5c45eb225 100644 --- a/src/lib/elementary/efl_ui_widget_image.h +++ b/src/lib/elementary/efl_ui_widget_image.h | |||
@@ -61,7 +61,7 @@ struct _Efl_Ui_Image_Data | |||
61 | 61 | ||
62 | Evas_Coord img_x, img_y, img_w, img_h; | 62 | Evas_Coord img_x, img_y, img_w, img_h; |
63 | 63 | ||
64 | int load_size; | 64 | Eina_Size2D load_size; |
65 | int frame_count; | 65 | int frame_count; |
66 | int cur_frame; | 66 | int cur_frame; |
67 | 67 | ||