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
3522a5ed
Commit
3522a5ed
authored
Feb 03, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix error in previous commit (do change fps on profile change!!)
parent
79ef39aa
Pipeline
#14402
passed with stage
in 19 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core.cpp
View file @
3522a5ed
...
...
@@ -347,6 +347,7 @@ bool Core::setCurrentProfile(const QString &profilePath)
m_projectProfile
->
set_height
(
getCurrentProfile
()
->
height
());
m_projectProfile
->
set_display_aspect
(
getCurrentProfile
()
->
display_aspect_num
(),
getCurrentProfile
()
->
display_aspect_den
());
m_projectProfile
->
set_sample_aspect
(
getCurrentProfile
()
->
sample_aspect_num
(),
getCurrentProfile
()
->
sample_aspect_den
());
m_projectProfile
->
set_frame_rate
(
getCurrentProfile
()
->
frame_rate_num
(),
getCurrentProfile
()
->
frame_rate_den
());
m_projectProfile
->
set_colorspace
(
getCurrentProfile
()
->
colorspace
());
m_projectProfile
->
set_progressive
(
getCurrentProfile
()
->
progressive
());
}
...
...
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