diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-23 08:57:27 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-23 08:57:27 -0400 |
| commit | f499698f8d8dd10c020f73528918fce41f37b4ff (patch) | |
| tree | 4dd78eeac40866d4bdf4d21fc5fdae4ba69546cf /src/client/views/collections/collectionFreeForm | |
| parent | 2a4e86be98ad0f8d4aa4cb09b982d448b542d916 (diff) | |
fixed pointer events for doc contents with onClickHanlders to be none when document or contents is selected. fixed stackingView text boxes that are focused to not scroll stackingView.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 0ea614472..840eede81 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -120,7 +120,6 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection constructor(props: any) { super(props); - this.props.setContentView?.(this); } @computed get views() { @@ -1576,6 +1575,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection @action componentDidMount() { + this.props.setContentView?.(this); super.componentDidMount?.(); this.props.setBrushViewer?.(this.brushView); setTimeout( |
