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
45c25b88
Commit
45c25b88
authored
Feb 24, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix proxy clips not correctly disabled on rendering.
Related to
#1332
parent
4032344f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mltcontroller/clipcontroller.cpp
View file @
45c25b88
...
...
@@ -174,6 +174,10 @@ void ClipController::getInfoForProducer()
path
.
prepend
(
pCore
->
currentDoc
()
->
documentRoot
());
m_properties
->
set
(
"resource"
,
path
.
toUtf8
().
constData
());
}
if
(
QFileInfo
(
proxy
).
isRelative
())
{
proxy
.
prepend
(
pCore
->
currentDoc
()
->
documentRoot
());
m_properties
->
set
(
"kdenlive:proxy"
,
proxy
.
toUtf8
().
constData
());
}
// This is a proxy producer, read original url from kdenlive property
path
=
m_properties
->
get
(
"kdenlive:originalurl"
);
if
(
QFileInfo
(
path
).
isRelative
())
{
...
...
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