diff options
author | bobzel <zzzman@gmail.com> | 2021-08-24 02:30:06 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-08-24 02:30:06 -0400 |
commit | 707038795f7129d30a1d4ed5f2311f18a282fecb (patch) | |
tree | 04eb6bb00883f8c3c88a9c1c771c5899f0355f07 /src/client/views/nodes/ScreenshotBox.tsx | |
parent | e81bb4e087d7bdb9521bfed1c84ba4d4dac8aa75 (diff) |
fixed following link from ink stroke. made interacting with annotatable documents consistent when selections are cleared by clicking. fixed undo for webboxes. fixed limiting size of links button.
Diffstat (limited to 'src/client/views/nodes/ScreenshotBox.tsx')
-rw-r--r-- | src/client/views/nodes/ScreenshotBox.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/ScreenshotBox.tsx b/src/client/views/nodes/ScreenshotBox.tsx index f0db0b594..7ad96bf05 100644 --- a/src/client/views/nodes/ScreenshotBox.tsx +++ b/src/client/views/nodes/ScreenshotBox.tsx @@ -175,8 +175,7 @@ export class ScreenshotBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatabl @computed get content() { if (this.rootDoc.videoWall) return (null); - const interactive = CurrentUserUtils.SelectedTool !== InkTool.None || !this.props.isSelected() ? "" : "-interactive"; - return <video className={"videoBox-content" + interactive} key="video" + return <video className={"videoBox-content"} key="video" ref={r => { this._videoRef = r; setTimeout(() => { |