diff options
author | Chris Michael <cp.michael@samsung.com> | 2018-11-08 10:36:27 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2018-11-08 10:36:27 -0500 |
commit | 4648b4fef25097ef13d948bc863db9bb69c84048 (patch) | |
tree | 92f9eacfa27c827eee5025e443d1b44e70e7ff11 | |
parent | e_xkb: Replace deprecated edje_extern_object_aspect_set function (diff) | |
download | enlightenment-4648b4fef25097ef13d948bc863db9bb69c84048.tar.gz |
ibar: Replace deprecated edje_extern_object_aspect_set call
-rw-r--r-- | src/modules/ibar/e_mod_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index f4ddc195b..22cca539f 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -1357,7 +1357,7 @@ _ibar_icon_menu_client_add(IBar_Icon *ic, E_Client *ec) h = ec->client.h; e_comp_object_util_del_list_append(ic->menu->comp_object, img); evas_object_show(img); - edje_extern_object_aspect_set(img, EDJE_ASPECT_CONTROL_BOTH, w, h); + evas_object_size_hint_aspect_set(img, EVAS_ASPECT_CONTROL_BOTH, w, h); edje_object_part_swallow(it, "e.swallow.icon", img); edje_object_part_text_set(it, "e.text.title", txt); if (ec->focused) |