summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-07-24 08:32:06 -0400
committerThibault Saunier <tsaunier@gnome.org>2016-07-24 08:43:34 -0400
commit21ba30dd934a5719132b807b559c1a4c3c8a341a (patch)
treeb880d3bd0efeff8a3da758f47a4e50cfa07143b6
parent256be462d1614230f8091966da193f9f448e1440 (diff)
timeline: Emit snap-ended on commit if needed
Commiting the timeline means that the current operations on the clips are over, so we should concider snapping as done at that point Fixes T7499
-rw-r--r--ges/ges-timeline.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c
index 681d0a9b..731564b7 100644
--- a/ges/ges-timeline.c
+++ b/ges/ges-timeline.c
@@ -3406,6 +3406,8 @@ ges_timeline_commit (GESTimeline * timeline)
LOCK_DYN (timeline);
ret = ges_timeline_commit_unlocked (timeline);
UNLOCK_DYN (timeline);
+
+ ges_timeline_emit_snappig (timeline, NULL, NULL);
return ret;
}