aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/Track.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-08-06 16:02:35 -0400
committerandrewdkim <adkim414@gmail.com>2019-08-06 16:02:35 -0400
commita4b5fa0273bb7bc872699f0f0ce047ec0fbc7d43 (patch)
treeac35fc8a360682c0e2dd1dd1abffe8fb52a09d74 /src/client/views/animationtimeline/Track.tsx
parentb6990a61befdea70abd99f125a2488ce5a6f04a6 (diff)
debug and context menu
Diffstat (limited to 'src/client/views/animationtimeline/Track.tsx')
-rw-r--r--src/client/views/animationtimeline/Track.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/animationtimeline/Track.tsx b/src/client/views/animationtimeline/Track.tsx
index fc2cacba8..363ab4074 100644
--- a/src/client/views/animationtimeline/Track.tsx
+++ b/src/client/views/animationtimeline/Track.tsx
@@ -128,8 +128,10 @@ export class Track extends React.Component<IProps> {
private applyKeys = async (kf: Doc) => {
let kfNode = await Cast(kf.key, Doc) as Doc;
let docFromApply = kfNode;
+ console.log(Doc.allKeys(docFromApply));
if (this.filterKeys(Doc.allKeys(this.props.node)).length > this.filterKeys(Doc.allKeys(kfNode)).length) docFromApply = this.props.node;
this.filterKeys(Doc.allKeys(docFromApply)).forEach(key => {
+ console.log(key);
if (!kfNode[key]) {
this.props.node[key] = undefined;
} else {