From f44725fcbc503034d8a2176845e63d420669c5fd Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 5 Dec 2021 20:29:08 +0000 Subject: [PATCH] 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 79f8d7c6..8644ee0e 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); } }