projects
/
synfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
79520f7
)
Use macro to import z depth parameter for homogeneity.
author
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:03:03 +0000
(12:03 +0200)
committer
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:03:03 +0000
(12:03 +0200)
synfig-core/src/synfig/layer.cpp
patch
|
blob
|
history
diff --git
a/synfig-core/src/synfig/layer.cpp
b/synfig-core/src/synfig/layer.cpp
index
33fffd3
..
5b52c29
100644
(file)
--- a/
synfig-core/src/synfig/layer.cpp
+++ b/
synfig-core/src/synfig/layer.cpp
@@
-292,12
+292,14
@@
Layer::on_changed()
bool
Layer::set_param(const String ¶m, const ValueBase &value)
{
-
if(param=="z_depth" && value.same_type_as(z_depth_))
+
/*
if(param=="z_depth" && value.same_type_as(z_depth_))
{
z_depth_=value.get(z_depth_);
set_param_static(param, value.get_static());
return true;
}
+ */
+ IMPORT_AS(z_depth_,"z_depth")
return false;
}