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
ed99187e
Commit
ed99187e
authored
Jan 24, 2022
by
Jean-Baptiste Mardelle
Browse files
Ensure thumbnail preview profile is not changed by clip resolution
Related to
#1314
parent
4978bf3c
Pipeline
#127963
passed with stage
in 8 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core.cpp
View file @
ed99187e
...
...
@@ -436,7 +436,7 @@ Mlt::Profile *Core::getProjectProfile()
{
if
(
!
m_projectProfile
)
{
m_projectProfile
=
std
::
make_unique
<
Mlt
::
Profile
>
(
m_currentProfile
.
toStdString
().
c_str
());
m_projectProfile
->
set_explicit
(
1
);
m_projectProfile
->
set_explicit
(
true
);
updateMonitorProfile
();
}
return
m_projectProfile
.
get
();
...
...
@@ -957,6 +957,7 @@ Mlt::Profile *Core::thumbProfile()
width
++
;
}
m_thumbProfile
->
set_width
(
width
);
m_thumbProfile
->
set_explicit
(
true
);
}
return
m_thumbProfile
.
get
();
}
...
...
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