diff options
author | bobzel <zzzman@gmail.com> | 2024-05-07 14:55:54 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-07 14:55:54 -0400 |
commit | b8907e69160d97d919fcd83eb86d60e3634205ca (patch) | |
tree | 654f82036f5304403ab025e7ff02ced8069a05be /src/client/views/nodes/DocumentView.tsx | |
parent | 23d4470b3f6a0bd862f3f5f9c775be039d479d81 (diff) |
lint cleanup for schemaview
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 03cdc8472..dc597e5ff 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1319,8 +1319,6 @@ export class DocumentView extends DocComponent<DocumentViewProps>() { screenToLocalScale = () => this._props.ScreenToLocalTransform().Scale; isSelected = () => this.IsSelected; select = (extendSelection: boolean, focusSelection?: boolean) => { - // if (this.IsSelected && DocumentView.Selected().length > 1) DocumentView.DeselectView(this); - // else { DocumentView.SelectView(this, extendSelection); if (focusSelection) { DocumentView.showDocument(this.Document, { @@ -1329,7 +1327,6 @@ export class DocumentView extends DocComponent<DocumentViewProps>() { zoomTime: 500, }); } - // } }; backgroundColor = () => this._docViewInternal?.backgroundBoxColor; DataTransition = () => this._props.DataTransition?.() || StrCast(this.Document.dataTransition); |