diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 266473905c..9b0338d1d3 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -1944,8 +1944,13 @@ _efl_canvas_video_efl_gfx_position_set(Evas_Object *obj, Efl_Canvas_Video_Data * | |||
1944 | } | 1944 | } |
1945 | 1945 | ||
1946 | EOLIAN static void | 1946 | EOLIAN static void |
1947 | _efl_canvas_video_efl_canvas_group_group_resize(Evas_Object *obj, Efl_Canvas_Video_Data *sd, Evas_Coord w, Evas_Coord h) | 1947 | _efl_canvas_video_efl_gfx_size_set(Evas_Object *obj, Efl_Canvas_Video_Data *sd, Evas_Coord w, Evas_Coord h) |
1948 | { | 1948 | { |
1949 | if (_evas_object_intercept_call(obj, EVAS_OBJECT_INTERCEPT_CB_RESIZE, 0, w, h)) | ||
1950 | return; | ||
1951 | |||
1952 | efl_gfx_size_set(efl_super(obj, MY_CLASS), w, h); | ||
1953 | |||
1949 | _efl_canvas_video_aspect_border_apply(obj, sd, w, h); | 1954 | _efl_canvas_video_aspect_border_apply(obj, sd, w, h); |
1950 | evas_object_resize(sd->bg, w, h); | 1955 | evas_object_resize(sd->bg, w, h); |
1951 | } | 1956 | } |