fixed various caching update issues

This commit is contained in:
itsmattkc
2021-01-22 14:33:30 +11:00
parent dfdb375cbf
commit 2af776b110
16 changed files with 98 additions and 74 deletions
+5
View File
@@ -38,6 +38,11 @@ NodeKeyframe::NodeKeyframe(const rational &time, const QVariant &value, const No
setParent(parent);
}
NodeKeyframe::~NodeKeyframe()
{
setParent(nullptr);
}
NodeKeyframe *NodeKeyframe::copy(QObject* parent) const
{
NodeKeyframe* copy = new NodeKeyframe(time_, value_, type_, track_, element_, parent);