okra pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=27c84137009ed7e20858be7756224047c946dcf0
commit 27c84137009ed7e20858be7756224047c946dcf0 Author: Stephen 'Okra' Houston <[email protected]> Date: Wed Dec 14 10:27:48 2016 -0600 Luncher: Pass the e_comp client to the preview add callback. --- src/modules/luncher/bar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index 27751bd..1e3642d 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -1299,7 +1299,7 @@ _bar_cb_exec_new(void *data EINA_UNUSED, int type, E_Exec_Instance *ex) if (!eina_list_data_find(ic->execs, ex)) ic->execs = eina_list_append(ic->execs, ex); if (evas_object_visible_get(ec->frame)) - _bar_exec_new_show(ic, NULL, NULL, NULL); + _bar_exec_new_show(ic, NULL, ec->frame, NULL); else evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_SHOW, _bar_exec_new_show, ic); @@ -1309,7 +1309,7 @@ _bar_cb_exec_new(void *data EINA_UNUSED, int type, E_Exec_Instance *ex) if (!eina_list_data_find(ic->clients, ec)) ic->clients = eina_list_append(ic->clients, ec); if (evas_object_visible_get(ec->frame)) - _bar_exec_new_show(ic, NULL, NULL, NULL); + _bar_exec_new_show(ic, NULL, ec->frame, NULL); else evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_SHOW, _bar_exec_new_show, ic); --
