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
9fbafcdc
Commit
9fbafcdc
authored
Jan 27, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix thumbnails with movit enabled.
Fixes
#543
parent
9e502871
Pipeline
#13973
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/bin/projectclip.cpp
View file @
9fbafcdc
...
...
@@ -853,7 +853,7 @@ std::shared_ptr<Mlt::Producer> ProjectClip::cloneProducer(const std::shared_ptr<
std
::
shared_ptr
<
Mlt
::
Producer
>
ProjectClip
::
softClone
(
const
char
*
list
)
{
QString
service
=
QString
::
fromLatin1
(
m_masterProducer
->
get
(
"mlt_service"
));
QString
resource
=
QString
::
from
Latin1
(
m_masterProducer
->
get
(
"resource"
));
QString
resource
=
QString
::
from
Utf8
(
m_masterProducer
->
get
(
"resource"
));
std
::
shared_ptr
<
Mlt
::
Producer
>
clone
(
new
Mlt
::
Producer
(
*
m_masterProducer
->
profile
(),
service
.
toUtf8
().
constData
(),
resource
.
toUtf8
().
constData
()));
Mlt
::
Properties
original
(
m_masterProducer
->
get_properties
());
Mlt
::
Properties
cloneProps
(
clone
->
get_properties
());
...
...
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