diff options
author | bobzel <zzzman@gmail.com> | 2021-02-12 22:25:40 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-02-12 22:25:40 -0500 |
commit | d9ec489c2f549c4aef0b3f458abfda5bb11e7188 (patch) | |
tree | 37cd972de5b5afa9cdd760ec3035d433090aa556 /src/client/views/nodes/DocumentView.tsx | |
parent | d8bb0894ce986329c55837e32591bcf5b9f8ed4b (diff) |
changed audio video annotation to use only timecodeToShow/timecodeToHide. distinguish timeline annotation from video frame annotations with _timelineLabel field. Lightbox improvements to restore original camera values and to use fitContentsToDoc for collections
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index bcf12c93c..d593b75eb 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -57,7 +57,7 @@ export interface DocumentViewSharedProps { renderDepth: number; Document: Doc; DataDoc?: Doc; - fitContentsToDoc?: boolean; // used by freeformview to fit its contents to its panel. corresponds to _fitToBox property on a Document + fitContentsToDoc?: () => boolean; // used by freeformview to fit its contents to its panel. corresponds to _fitToBox property on a Document ContainingCollectionView: Opt<CollectionView>; ContainingCollectionDoc: Opt<Doc>; setContentView?: (view: DocComponentView) => any; |