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
526bc6be
Commit
526bc6be
authored
Nov 27, 2020
by
Jean-Baptiste Mardelle
Browse files
Don't double-load same track transitions as normal transitions
parent
84d2fe9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/builders/meltBuilder.cpp
View file @
526bc6be
...
...
@@ -155,7 +155,8 @@ bool constructTimelineFromMelt(const std::shared_ptr<TimelineItemModel> &timelin
}
QString
id
(
t
.
get
(
"kdenlive_id"
));
QString
internal
(
t
.
get
(
"internal_added"
));
if
(
internal
.
isEmpty
())
{
QString
isMix
(
t
.
get
(
"kdenlive:mixcut"
));
if
(
internal
.
isEmpty
()
&&
isMix
.
isEmpty
())
{
compositions
<<
new
Mlt
::
Transition
(
t
);
if
(
id
.
isEmpty
())
{
qDebug
()
<<
"// Warning, this should not happen, transition without id: "
<<
t
.
get
(
"id"
)
<<
" = "
<<
t
.
get
(
"mlt_service"
)
<<
", ON TRACK: "
<<
t
.
get_b_track
();
...
...
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