aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentView.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-04-11 05:24:03 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-04-11 05:24:03 -0400
commit89e9ad0448290fe7daf6980c9c5e5cda0ce66714 (patch)
tree43c2367d2d53eb7cb128e3a3aac342e424d23a12 /src/client/views/nodes/DocumentView.tsx
parentc705e22aa90710e3ba3f9ed5a6fadb0f1729f7b9 (diff)
Row dragging no longer interferes with multi-selection; dragged rows render where they will be dropped; pointerevent listeners removed from schemarowbox
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r--src/client/views/nodes/DocumentView.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index 8d3750cad..3764f6edd 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -279,6 +279,7 @@ export class DocumentViewInternal extends DocComponent<FieldViewProps & Document
}
startDragging(x: number, y: number, dropAction: dropActionType, hideSource = false) {
+ //console.log("docview drag")
const docView = this._docView;
if (this._mainCont.current && docView) {
const views = SelectionManager.Views.filter(dv => dv.ContentDiv);