projects
/
synfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0d9bcc
)
When setting a parameter in Layer Composite keep the static values of the given Value...
author
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:04:10 +0000
(12:04 +0200)
committer
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:04:10 +0000
(12:04 +0200)
synfig-core/src/synfig/layer_composite.cpp
patch
|
blob
|
history
diff --git
a/synfig-core/src/synfig/layer_composite.cpp
b/synfig-core/src/synfig/layer_composite.cpp
index
93f040a
..
7b9e0bf
100644
(file)
--- a/
synfig-core/src/synfig/layer_composite.cpp
+++ b/
synfig-core/src/synfig/layer_composite.cpp
@@
-157,11
+157,15
@@
bool
Layer_Composite::set_param(const String & param, const ValueBase &value)
{
if(param=="amount" && value.same_type_as(amount_))
+ {
amount_=value.get(amount_);
+ amount_static=value.get_static();
+ }
else
if(param=="blend_method" && value.same_type_as(int()))
{
blend_method_ = static_cast<Color::BlendMethod>(value.get(int()));
+ blend_method_static=value.get_static();
if (blend_method_ < 0 || blend_method_ >= Color::BLEND_END)
{