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
516ae423
Commit
516ae423
authored
Dec 04, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix image sequences broken on project opening.
BUG: 429798
parent
790e96cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/doc/documentchecker.cpp
View file @
516ae423
...
...
@@ -300,7 +300,7 @@ bool DocumentChecker::hasErrorInClips()
if
(
service
==
QLatin1String
(
"qimage"
)
||
service
==
QLatin1String
(
"pixbuf"
))
{
slidePattern
=
QFileInfo
(
resource
).
fileName
();
resource
=
QFileInfo
(
resource
).
absolutePath
();
}
else
if
(
service
.
startsWith
(
QLatin1String
(
"avformat"
))
&&
Xml
::
hasXmlProperty
(
e
,
QStringLiteral
(
"ttl"
)))
{
}
else
if
(
(
service
.
startsWith
(
QLatin1String
(
"avformat"
))
||
service
==
QLatin1String
(
"timewarp"
))
&&
Xml
::
hasXmlProperty
(
e
,
QStringLiteral
(
"ttl"
)))
{
// Fix MLT 6.20 avformat slideshows
if
(
service
.
startsWith
(
QLatin1String
(
"avformat"
)))
{
Xml
::
setXmlProperty
(
e
,
QStringLiteral
(
"mlt_service"
),
QStringLiteral
(
"qimage"
));
...
...
Jean-Baptiste Mardelle
@mardelle
mentioned in issue
#779 (closed)
·
Dec 03, 2020
mentioned in issue
#779 (closed)
mentioned in issue #779
Toggle commit list
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