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
This commit is contained in:
Carsten Haitzler 2021-12-05 20:29:08 +00:00
parent c975e23946
commit f44725fcbc
1 changed files with 2 additions and 2 deletions

View File

@ -120,12 +120,12 @@ _mouse_up_cb(void *data,
ecore_timer_del(sd->autozoom_timeout); ecore_timer_del(sd->autozoom_timeout);
sd->autozoom_timeout = NULL; 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); sel_zoom(sd->self, 1.0);
return; return;
} }
} }
evas_object_smart_callback_call(data, "clicked", NULL); evas_object_smart_callback_call(sd->self, "clicked", NULL);
} }
} }