From c527067953eb454e81b10824242027c31912c668 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Wed, 28 Aug 2013 19:56:29 +0200 Subject: [PATCH] ges-clip: when a child, is removed, disconnect from its notifies. --- ges/ges-clip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ges/ges-clip.c b/ges/ges-clip.c index 8bee4968e1..fca9892347 100644 --- a/ges/ges-clip.c +++ b/ges/ges-clip.c @@ -349,6 +349,9 @@ _child_added (GESContainer * container, GESTimelineElement * element) static void _child_removed (GESContainer * container, GESTimelineElement * element) { + g_signal_handlers_disconnect_by_func (element, _child_priority_changed_cb, + container); + _compute_height (container); }