From 1967f77108f0b1e1e00b4ed81ad636c50ccb351a Mon Sep 17 00:00:00 2001 From: Carlos Lopez Date: Sun, 22 Aug 2010 12:44:09 +0200 Subject: [PATCH] Set z depth static value to false by default in Layer class. Previously was unset and get random values. So this fix the "random static on zdepth" bug. --- synfig-core/src/synfig/layer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/synfig-core/src/synfig/layer.cpp b/synfig-core/src/synfig/layer.cpp index 5b52c29..2a5a90b 100644 --- a/synfig-core/src/synfig/layer.cpp +++ b/synfig-core/src/synfig/layer.cpp @@ -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++; } -- 2.7.4