diff options
author | bobzel <zzzman@gmail.com> | 2023-11-01 23:54:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-11-01 23:54:49 -0400 |
commit | 84c15417f2247fc650a9f7b2c959479519bd3ebb (patch) | |
tree | f97f9f34ed0a1e65394f7b9e3818a9075b3a64f7 /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 58213b0201ea0191f06f42beac9c3a17ebfc98ea (diff) |
fixes to snapping lines when dragging/resizing (lines are created for doc not being dragged, snapping lines are created for documents in groups). cleanup of pres path code.
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index 9f7ebc5d9..f9afe4d53 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -182,6 +182,9 @@ export class CollectionFreeFormDocumentView extends DocComponent<CollectionFreeF } }; + dragEnding = () => this.props.CollectionFreeFormView?.dragEnding(); + dragStarting = () => this.props.CollectionFreeFormView?.dragStarting(false, true); + nudge = (x: number, y: number) => { this.props.Document.x = NumCast(this.props.Document.x) + x; this.props.Document.y = NumCast(this.props.Document.y) + y; |