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
02b2b71d
Commit
02b2b71d
authored
Nov 12, 2008
by
Jean-Baptiste Mardelle
Browse files
Fix color value for filters
http://www.kdenlive.org/mantis/view.php?id=320
svn path=/branches/KDE4/; revision=2697
parent
68cf99d0
Changes
1
Show whitespace changes
Inline
Side-by-side
src/effectstackedit.cpp
View file @
02b2b71d
...
...
@@ -344,7 +344,8 @@ void EffectStackEdit::collectAllParameters() {
setValue
=
box
->
checkState
()
==
Qt
::
Checked
?
"1"
:
"0"
;
}
else
if
(
type
==
"color"
)
{
KColorButton
*
color
=
((
Ui
::
Colorval_UI
*
)
valueItems
[
paramName
])
->
kcolorbutton
;
setValue
.
sprintf
(
"0x%08x"
,
color
->
color
().
rgba
());
setValue
=
color
->
color
().
name
();
setValue
.
replace
(
'#'
,
"0x"
);
}
else
if
(
type
==
"complex"
)
{
ComplexParameter
*
complex
=
((
ComplexParameter
*
)
valueItems
[
paramName
+
"complex"
]);
namenode
.
item
(
i
)
=
complex
->
getParamDesc
();
...
...
Write
Preview
Supports
Markdown
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