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
991989ab
Commit
991989ab
authored
Jan 24, 2022
by
Jean-Baptiste Mardelle
Browse files
Ensure thumbnail preview profile is not changed by clip resolution
Related to
#1314
parent
136a07aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core.cpp
View file @
991989ab
...
...
@@ -421,7 +421,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
();
...
...
@@ -941,6 +941,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