projects
/
synfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fef3b3
)
Set z depth static value to false by default in Layer class.
author
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:44:09 +0000
(12:44 +0200)
committer
Carlos Lopez
<genetita@gmail.com>
Sun, 22 Aug 2010 10:44:09 +0000
(12:44 +0200)
Previously was unset and get random values.
So this fix the "random static on zdepth" bug.
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
5b52c29
..
2a5a90b
100644
(file)
--- 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++;
}