This commit is contained in:
Alastair Poole 2020-12-16 13:43:31 +00:00
parent 094b5a45dd
commit 597ca50e81
1 changed files with 2 additions and 2 deletions

View File

@ -406,8 +406,8 @@ _item_create(Evas_Object *parent)
ic = elm_icon_add(tbl);
evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
evas_object_size_hint_align_set(ic, FILL, FILL);
evas_object_size_hint_min_set(ic, ELM_SCALE_SIZE(16), ELM_SCALE_SIZE(16));
evas_object_size_hint_max_set(ic, ELM_SCALE_SIZE(16), ELM_SCALE_SIZE(16));
evas_object_size_hint_min_set(ic, ELM_SCALE_SIZE(20), ELM_SCALE_SIZE(20));
evas_object_size_hint_max_set(ic, ELM_SCALE_SIZE(20), ELM_SCALE_SIZE(20));
evas_object_show(ic);
evas_object_data_set(tbl, "icon", ic);
elm_box_pack_end(hbx, ic);