Skip to content
GitLab
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
d56831ea
Commit
d56831ea
authored
Oct 31, 2016
by
Jean-Baptiste Mardelle
Browse files
Use relative path in .mlt files created by clip jobs
parent
cdea8696
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/project/jobs/meltjob.cpp
View file @
d56831ea
...
...
@@ -176,6 +176,10 @@ void MeltJob::startJob()
m_consumer
->
set
(
j
.
key
().
toUtf8
().
constData
(),
j
.
value
().
toUtf8
().
constData
());
}
}
if
(
consumerName
.
startsWith
(
QStringLiteral
(
"xml:"
)))
{
// Use relative path in xml
m_consumer
->
set
(
"root"
,
QFileInfo
(
m_dest
).
absolutePath
().
toUtf8
().
constData
());
}
// Build filter
if
(
!
filterName
.
isEmpty
())
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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