From 219154eacb16867be7d0e2274227a62072d70f39 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Wed, 30 Oct 2013 00:27:36 +0100 Subject: [PATCH] track-element: add start to the position to which we wish we split the bindings. The bindings split is relative to the beginning of the clip. --- ges/ges-clip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ges/ges-clip.c b/ges/ges-clip.c index 49b9c8f024..24e7403d26 100644 --- a/ges/ges-clip.c +++ b/ges/ges-clip.c @@ -1229,7 +1229,7 @@ ges_clip_split (GESClip * clip, guint64 position) GES_TIMELINE_ELEMENT (new_trackelement)); ges_track_element_split_bindings (trackelement, new_trackelement, - position + inpoint); + position - start + inpoint); } _set_duration0 (GES_TIMELINE_ELEMENT (clip), position - _START (clip));