Set z depth static value to false by default in Layer class.
[synfig.git] / synfig-core / src / synfig / layer.cpp
index 33fffd3..2a5a90b 100644 (file)
@@ -136,7 +136,8 @@ Layer::subsys_stop()
 Layer::Layer():
        active_(true),
        z_depth_(0.0f),
-       dirty_time_(Time::end())
+       dirty_time_(Time::end()),
+       z_depth_static(false)
 {
        _LayerCounter::counter++;
 }
@@ -292,12 +293,14 @@ Layer::on_changed()
 bool
 Layer::set_param(const String &param, 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;
 }