Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
4de7f1e4
Commit
4de7f1e4
authored
Sep 01, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix overwrite sometimes not working on clips with multiple streams
parent
66602063
Pipeline
#32576
passed with stage
in 38 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinefunctions.cpp
View file @
4de7f1e4
...
...
@@ -384,7 +384,7 @@ bool TimelineFunctions::breakAffectedGroups(const std::shared_ptr<TimelineItemMo
std
::
unordered_set
<
int
>
all_children
=
timeline
->
m_groups
->
getLeaves
(
groupId
);
for
(
int
child
:
all_children
)
{
int
childTrackId
=
timeline
->
getItemTrackId
(
child
);
if
(
!
tracks
.
contains
(
childTrackId
))
{
if
(
!
tracks
.
contains
(
childTrackId
)
&&
timeline
->
m_groups
->
isInGroup
(
child
)
)
{
// This item should not be affected by the operation, ungroup it
result
=
result
&&
timeline
->
requestClipUngroup
(
child
,
undo
,
redo
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment