diff options
| author | bobzel <zzzman@gmail.com> | 2023-02-22 16:16:45 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-02-22 16:16:45 -0500 |
| commit | 3e93857b4dfdc09a4dce7ec12ca0dbc60b727fb1 (patch) | |
| tree | efaf698580d95d7403b4d16d710e7e4239340cc7 /src/client/views/collections/CollectionMenu.tsx | |
| parent | ea4588185f165f66a4d596d51a8a8ad955985762 (diff) | |
fixes for restoring layouts in presentations and link following.
Diffstat (limited to 'src/client/views/collections/CollectionMenu.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionMenu.tsx b/src/client/views/collections/CollectionMenu.tsx index c83f4e689..17f02711d 100644 --- a/src/client/views/collections/CollectionMenu.tsx +++ b/src/client/views/collections/CollectionMenu.tsx @@ -746,7 +746,7 @@ export class CollectionFreeFormViewChrome extends React.Component<CollectionView const currentFrame = Cast(this.document._currentFrame, 'number', null); if (currentFrame === undefined) { this.document._currentFrame = 0; - CollectionFreeFormDocumentView.setupKeyframes(this.childDocs, 0); + CollectionFreeFormDocumentView.setupKeyframes(this.c hildDocs, 0); } this._keyTimer = CollectionFreeFormView.updateKeyframe(this._keyTimer, [...this.childDocs, this.document], currentFrame || 0); this.document._currentFrame = Math.max(0, (currentFrame || 0) + 1); |
