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
ddacda93
Commit
ddacda93
authored
Jul 10, 2020
by
Jean-Baptiste Mardelle
Browse files
Don't try to archive color clips, prompting missing clip error
parent
0c36cf79
Pipeline
#26597
passed with stage
in 10 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/project/dialogs/projectsettings.cpp
View file @
ddacda93
...
...
@@ -590,7 +590,7 @@ QStringList ProjectSettings::extractPlaylistUrls(const QString &path)
for
(
int
i
=
0
;
i
<
files
.
count
();
++
i
)
{
QDomElement
e
=
files
.
at
(
i
).
toElement
();
QString
type
=
Xml
::
getXmlProperty
(
e
,
QStringLiteral
(
"mlt_service"
));
if
(
type
!=
QLatin1String
(
"colour"
))
{
if
(
type
!=
QLatin1String
(
"colour"
)
&&
type
!=
QLatin1String
(
"color"
)
)
{
QString
url
=
Xml
::
getXmlProperty
(
e
,
QStringLiteral
(
"resource"
));
if
(
type
==
QLatin1String
(
"timewarp"
))
{
url
=
Xml
::
getXmlProperty
(
e
,
QStringLiteral
(
"warp_resource"
));
...
...
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