Fix keyframe undo issue

This commit is contained in:
JannisX11 2021-05-12 20:36:10 +02:00
parent 946d7b3e94
commit 28d8f7d5ba

View File

@ -113,7 +113,7 @@ class Animation {
keyframes: []
}
kfs.forEach(kf => {
ba_copy.keyframes.push(kf.getUndoCopy(save));
ba_copy.keyframes.push(kf.getUndoCopy(true));
})
}
}