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
89a31330
Commit
89a31330
authored
Apr 02, 2021
by
Julius Künzel
Browse files
Archive Project: fix some lumas are not found
parent
0a2910ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinemodel.cpp
View file @
89a31330
...
...
@@ -4658,6 +4658,9 @@ QStringList TimelineModel::extractCompositionLumas() const
QStringList
urls
;
for
(
const
auto
&
compo
:
m_allCompositions
)
{
QString
luma
=
compo
.
second
->
getProperty
(
QStringLiteral
(
"resource"
));
if
(
luma
.
isEmpty
())
{
luma
=
compo
.
second
->
getProperty
(
QStringLiteral
(
"luma"
));
}
if
(
!
luma
.
isEmpty
())
{
urls
<<
QUrl
::
fromLocalFile
(
luma
).
toLocalFile
();
}
...
...
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