aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/Keyframe.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2020-02-09 14:46:05 -0500
committerandrewdkim <adkim414@gmail.com>2020-02-09 14:46:05 -0500
commit4eb94980caad8fb98863e140189a9f77b67cf354 (patch)
tree6e76dcd50edf9c9a5d9f471b1aae27f57fd0a291 /src/client/views/animationtimeline/Keyframe.tsx
parent92068acedc3d6f5bed25dc1a0dacbe19d0338829 (diff)
fixed scrubber
Diffstat (limited to 'src/client/views/animationtimeline/Keyframe.tsx')
-rw-r--r--src/client/views/animationtimeline/Keyframe.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/animationtimeline/Keyframe.tsx b/src/client/views/animationtimeline/Keyframe.tsx
index a2add3ae8..fd4a3f281 100644
--- a/src/client/views/animationtimeline/Keyframe.tsx
+++ b/src/client/views/animationtimeline/Keyframe.tsx
@@ -337,7 +337,7 @@ export class Keyframe extends React.Component<IProps> {
makeKeyframeMenu = (kf: Doc, e: MouseEvent) => {
TimelineMenu.Instance.addItem("button", "Show Data", () => {
runInAction(() => {
- let kvp = Docs.Create.KVPDocument(Cast(kf.key, Doc) as Doc, { width: 300, height: 300 });
+ let kvp = Docs.Create.KVPDocument(Cast(kf.key, Doc) as Doc, { _width: 300, _height: 300 });
CollectionDockingView.AddRightSplit(kvp, (kf.key as Doc).data as Doc);
});
}),