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
a89d9143
Commit
a89d9143
authored
Sep 13, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix spacer tool corruption when applied on clips with same track transition
parent
fd4de561
Pipeline
#80364
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinefunctions.cpp
View file @
a89d9143
...
...
@@ -427,7 +427,7 @@ bool TimelineFunctions::requestSpacerEndOperation(const std::shared_ptr<Timeline
int
track
=
timeline
->
getItemTrackId
(
itemId
);
bool
isClip
=
timeline
->
isClip
(
itemId
);
if
(
isClip
)
{
timeline
->
requestClipMove
(
itemId
,
track
,
startPosition
,
true
,
false
,
false
);
timeline
->
requestClipMove
(
itemId
,
track
,
startPosition
,
true
,
false
,
false
,
false
,
true
);
}
else
if
(
timeline
->
isComposition
(
itemId
))
{
timeline
->
requestCompositionMove
(
itemId
,
track
,
startPosition
,
false
,
false
);
}
else
{
...
...
Write
Preview
Supports
Markdown
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