Load all curves when opening DS with lastsession

Change-Id: I2de37fbd25b828e585739edee8bb079c02f58f94
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Knud Dollereder
2021-03-24 15:31:31 +01:00
parent 92de8402c4
commit 5faee6221f

View File

@@ -118,6 +118,11 @@ void CurveEditorView::nodeReparented(const ModelNode &node,
updateKeyframes(); updateKeyframes();
else if (QmlTimelineKeyframeGroup::checkKeyframesType(node)) else if (QmlTimelineKeyframeGroup::checkKeyframesType(node))
updateKeyframes(); updateKeyframes();
else if (newPropertyParent.isValid() && !oldPropertyParent.isValid()) {
if (activeTimeline().hasKeyframeGroupForTarget(node)) {
updateKeyframes();
}
}
} }
void CurveEditorView::auxiliaryDataChanged(const ModelNode &node, void CurveEditorView::auxiliaryDataChanged(const ModelNode &node,