mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
timeline-object: Edit can only work work with GESTrackSource
This commit is contained in:
parent
ce9aa02723
commit
ab9e2364c3
1 changed files with 2 additions and 1 deletions
|
@ -1362,7 +1362,8 @@ ges_timeline_object_edit (GESTimelineObject * object, GList * layers,
|
||||||
}
|
}
|
||||||
|
|
||||||
for (tmp = object->trackobjects; tmp; tmp = g_list_next (tmp)) {
|
for (tmp = object->trackobjects; tmp; tmp = g_list_next (tmp)) {
|
||||||
if (ges_track_object_is_locked (tmp->data)) {
|
if (ges_track_object_is_locked (tmp->data)
|
||||||
|
&& GES_IS_TRACK_SOURCE (tmp->data)) {
|
||||||
ret &= ges_track_object_edit (tmp->data, layers, mode, edge, position);
|
ret &= ges_track_object_edit (tmp->data, layers, mode, edge, position);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue