netstar pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=9b366ce88a3e2631d28dd4a8b1b09052d88d38ae

commit 9b366ce88a3e2631d28dd4a8b1b09052d88d38ae
Author: Alastair Poole <[email protected]>
Date:   Sat Nov 7 02:49:41 2020 +0000

    ibox: Live preview. Use the improved API for ibox.
    
    This is MUCH prettier.
---
 src/modules/ibox/e_mod_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/ibox/e_mod_main.c b/src/modules/ibox/e_mod_main.c
index d8d88a899..48f73bf05 100644
--- a/src/modules/ibox/e_mod_main.c
+++ b/src/modules/ibox/e_mod_main.c
@@ -594,7 +594,7 @@ _ibox_icon_fill_preview(IBox_Icon *ic, Eina_Bool is_retry)
 
    ec = ic->client;
 
-   img = e_comp_object_util_mirror_add(ec->frame);
+   img = e_comp_object_util_frame_mirror_add(ec->frame);
    if (!img && !is_retry)
      {
         ecore_timer_add(0.5, _ibox_icon_fill_timer, ic);
@@ -607,7 +607,7 @@ _ibox_icon_fill_preview(IBox_Icon *ic, Eina_Bool is_retry)
    evas_object_pass_events_set(ic->o_icon, 1);
    evas_object_show(ic->o_icon);
 
-   img2 = e_comp_object_util_mirror_add(ec->frame);
+   img2 = e_comp_object_util_frame_mirror_add(ec->frame);
    evas_object_size_hint_aspect_set(img2, EVAS_ASPECT_CONTROL_BOTH, 
ec->client.w, ec->client.h);
    ic->o_icon2 = img2;
    edje_object_part_swallow(ic->o_holder2, "e.swallow.preview", ic->o_icon2);
@@ -833,7 +833,7 @@ _ibox_cb_icon_mouse_move(void *data, Evas *e EINA_UNUSED, 
Evas_Object *obj EINA_
              else
                {
                   E_Client *ec = ic->client;
-                  o = e_comp_object_util_mirror_add(ec->frame);
+                  o = e_comp_object_util_frame_mirror_add(ec->frame);
                   evas_object_size_hint_aspect_set(o, 
EVAS_ASPECT_CONTROL_BOTH, ec->client.w, ec->client.h);
                   evas_object_size_hint_max_set(o, w, h);
                }

-- 


Reply via email to