nikawhite pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=6d394797925409a0ece6aeab4788f77ae1572c48
commit 6d394797925409a0ece6aeab4788f77ae1572c48 Author: Tetiana Naumenko <t.naume...@samsung.com> Date: Fri Jun 2 16:26:32 2017 +0300 property_common: made hint min of genlist item scalable Change-Id: I2f887ba6531c50aaa356d76329c809b54710a23e --- src/bin/ui/property/property_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ui/property/property_common.c b/src/bin/ui/property/property_common.c index 4ec30d0ab..800e80c4a 100644 --- a/src/bin/ui/property/property_common.c +++ b/src/bin/ui/property/property_common.c @@ -433,7 +433,7 @@ _control_create(Property_Attribute *pa, Property_Action *action, Evas_Object *pa elm_colorselector_palette_color_add(content, 255, 255, 255, 255); elm_colorselector_palette_color_add(content, 200, 200, 200, 255); #else - evas_object_size_hint_min_set(content, 200, 270); + evas_object_size_hint_min_set(content, 200 * elm_config_scale_get(), 270 * elm_config_scale_get()); #endif break; case PROPERTY_CONTROL_LABEL: --