elm: Fix default image scale type

Elementary image used to respect aspect ratio by default,
corresponding to the fit_inside policy.

Fixes T3914.
This commit is contained in:
Jean-Philippe Andre 2016-06-20 11:18:18 +09:00
parent b6e86c39e5
commit 80b6750a83
1 changed files with 3 additions and 1 deletions

View File

@ -875,13 +875,15 @@ elm_image_add(Evas_Object *parent)
}
EOLIAN static Eo *
_efl_ui_image_eo_base_constructor(Eo *obj, Efl_Ui_Image_Data *_pd EINA_UNUSED)
_efl_ui_image_eo_base_constructor(Eo *obj, Efl_Ui_Image_Data *pd)
{
obj = eo_constructor(eo_super(obj, MY_CLASS));
evas_obj_type_set(obj, MY_CLASS_NAME_LEGACY);
evas_object_smart_callbacks_descriptions_set(obj, _smart_callbacks);
elm_interface_atspi_accessible_role_set(obj, ELM_ATSPI_ROLE_IMAGE);
pd->scale_type = EFL_UI_IMAGE_SCALE_TYPE_FIT_INSIDE;
return obj;
}