From e9e7f0a82ce42ef8ee71c3f52c44c0b3d29d2e27 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Mon, 12 Aug 2013 21:25:31 +0200 Subject: [PATCH] container: resort children after prepending an element. --- ges/ges-container.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ges/ges-container.c b/ges/ges-container.c index b9cdb6914b..ecf6a78e4f 100644 --- a/ges/ges-container.c +++ b/ges/ges-container.c @@ -495,6 +495,8 @@ ges_container_add (GESContainer * container, GESTimelineElement * child) container->children = g_list_prepend (container->children, child); + _ges_container_sort_children (container); + /* Listen to all property changes */ mapping->start_notifyid = g_signal_connect (G_OBJECT (child), "notify::start",