diff options
| author | bobzel <zzzman@gmail.com> | 2020-12-10 14:18:53 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-12-10 14:18:53 -0500 |
| commit | d913740b994670b1b0eadd52069aeb69ef2b2380 (patch) | |
| tree | 322686806c3a183a07fc27b5737935a7f7a41465 /src/client/views/nodes/VideoBox.tsx | |
| parent | 30338491c7b3cbba852931c76774f6bfd44d4060 (diff) | |
more cleanup/organization of 'props' . removed VisibleHeight props and cleaned up PDF and other props
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index 8d10768ff..90a5dee23 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -427,11 +427,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD <div className="videoBox-viewer" > <CollectionFreeFormView {...OmitKeys(this.props, ["NativeWidth", "NativeHeight"]).omit} forceScaling={true} - PanelHeight={this.props.PanelHeight} - PanelWidth={this.props.PanelWidth} fieldKey={this.annotationKey} - focus={this.props.focus} - isSelected={this.props.isSelected} isAnnotationOverlay={true} select={emptyFunction} active={this.annotationsActive} @@ -441,12 +437,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD moveDocument={this.moveDocument} addDocument={this.addDocumentWithTimestamp} CollectionView={undefined} - ScreenToLocalTransform={this.props.ScreenToLocalTransform} - renderDepth={this.props.renderDepth + 1} - docFilters={this.props.docFilters} - docRangeFilters={this.props.docRangeFilters} - searchFilterDocs={this.props.searchFilterDocs} - ContainingCollectionDoc={this.props.ContainingCollectionDoc}> + renderDepth={this.props.renderDepth + 1}> {this.contentFunc} </CollectionFreeFormView> </div> |
