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
03e27c0a
Commit
03e27c0a
authored
Dec 31, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix window title using custom path instead of profile description.
Related to
#1284
parent
97cf5966
Pipeline
#116438
passed with stage
in 4 minutes and 54 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core.cpp
View file @
03e27c0a
...
...
@@ -464,7 +464,7 @@ bool Core::setCurrentProfile(const QString &profilePath)
m_projectProfile
->
set_sample_aspect
(
getCurrentProfile
()
->
sample_aspect_num
(),
getCurrentProfile
()
->
sample_aspect_den
());
m_projectProfile
->
set_display_aspect
(
getCurrentProfile
()
->
display_aspect_num
(),
getCurrentProfile
()
->
display_aspect_den
());
m_projectProfile
->
set_width
(
getCurrentProfile
()
->
width
());
m_projectProfile
->
get_profile
()
->
description
=
qstrdup
(
profilePath
.
toUtf8
().
constData
());
m_projectProfile
->
get_profile
()
->
description
=
qstrdup
(
getCurrentProfile
()
->
description
()
.
toUtf8
().
constData
());
m_projectProfile
->
set_explicit
(
true
);
updateMonitorProfile
();
}
...
...
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