diff options
| author | bobzel <zzzman@gmail.com> | 2023-10-27 13:39:04 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-10-27 13:39:04 -0400 |
| commit | a866baea5fdbf30650cbfbf4aa383019ef61ec3d (patch) | |
| tree | 3c0ddb94bed25ba7fb512c2eb85109b66b1eacac /src/client/views/animationtimeline/Track.tsx | |
| parent | b2233984df663be6554c935fe9e40f4778237e67 (diff) | |
added collection itself to timeline
Diffstat (limited to 'src/client/views/animationtimeline/Track.tsx')
| -rw-r--r-- | src/client/views/animationtimeline/Track.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/animationtimeline/Track.tsx b/src/client/views/animationtimeline/Track.tsx index b90ff5eaf..dfab849a4 100644 --- a/src/client/views/animationtimeline/Track.tsx +++ b/src/client/views/animationtimeline/Track.tsx @@ -34,7 +34,7 @@ export class Track extends React.Component<IProps> { @observable private _newKeyframe: boolean = false; private readonly MAX_TITLE_HEIGHT = 75; @observable private _trackHeight = 0; - private primitiveWhitelist = ['x', 'y', '_width', '_height', '_rotation', 'opacity', '_layout_scrollTop']; + private primitiveWhitelist = ['x', 'y', '_freeform_panX', '_freeform_panY', '_width', '_height', '_rotation', 'opacity', '_layout_scrollTop']; private objectWhitelist = ['data']; @computed private get regions() { |
