raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=f44725fcbc503034d8a2176845e63d420669c5fd
commit f44725fcbc503034d8a2176845e63d420669c5fd Author: Carsten Haitzler <[email protected]> Date: Sun Dec 5 20:29:08 2021 +0000 sel - call callback on an object not struct ptr for tab selector thatr zooms out and shows miniatures of terms on click on a term... @fix --- src/bin/sel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/sel.c b/src/bin/sel.c index 79f8d7c..8644ee0 100644 --- a/src/bin/sel.c +++ b/src/bin/sel.c @@ -120,12 +120,12 @@ _mouse_up_cb(void *data, ecore_timer_del(sd->autozoom_timeout); sd->autozoom_timeout = NULL; } - evas_object_smart_callback_call(data, "ending", NULL); + evas_object_smart_callback_call(sd->self, "ending", NULL); sel_zoom(sd->self, 1.0); return; } } - evas_object_smart_callback_call(data, "clicked", NULL); + evas_object_smart_callback_call(sd->self, "clicked", NULL); } } --
