diff options
author | geireann <geireann.lindfield@gmail.com> | 2024-04-28 16:01:49 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2024-04-28 16:01:49 -0400 |
commit | ab873e90112f2cac204a57a1b405cc241f7e8381 (patch) | |
tree | 763a93ed2d584916d08e12770d39c6ddb377c5f0 /src/client/views/nodes/VideoBox.tsx | |
parent | 729114c0867e3cc8d8e0668bae451976b387cb34 (diff) |
cleaned up explore mode to use focus(). fixed focusing on group doc elements to not focus on group first.
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
-rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index fd7997248..b8ec0081a 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -979,7 +979,6 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps>() impl this._props.bringToFront?.(cropping); return cropping; }; - browseTo = (clientX: number, clientY: number, browseTransitionTime: number) => !!this._ffref.current?.browseTo(clientX, clientY, browseTransitionTime); focus = (anchor: Doc, options: FocusViewOptions) => (anchor.type === DocumentType.CONFIG ? undefined : this._ffref.current?.focus(anchor, options)); savedAnnotations = () => this._savedAnnotations; render() { |