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
2b9fad69
Commit
2b9fad69
authored
Feb 20, 2022
by
Julius Künzel
Browse files
[Titler] Fix: don't remember outline value with factor 10
Fixes
#1342
parent
b29bb3c2
Pipeline
#140086
passed with stage
in 5 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/titler/titlewidget.cpp
View file @
2b9fad69
...
...
@@ -2420,7 +2420,7 @@ void TitleWidget::readChoices()
outlineColor
.
setAlpha
(
titleConfig
.
readEntry
(
"font_outline_alpha"
,
outlineColor
.
alpha
()));
fontColorButton
->
setColor
(
fontColor
);
textOutlineColor
->
setColor
(
outlineColor
);
textOutline
->
setValue
(
titleConfig
.
readEntry
(
"font_outline"
,
textOutline
->
value
()
/
10.0
)
)
;
textOutline
->
setValue
(
titleConfig
.
readEntry
(
"font_outline"
,
textOutline
->
value
()
)
/
10.0
);
int
weight
;
if
(
titleConfig
.
readEntry
(
"font_bold"
,
false
))
{
...
...
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