diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 21:26:28 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 21:26:28 -0400 |
| commit | 627adb92b604e117694e26af65afdc19920ac509 (patch) | |
| tree | c826f37dfdab76ba134bf7c55befc87b3028f4b3 /src/client/views/collections/collectionFreeForm | |
| parent | e66812a1e19023d777d90ee382cb3849c5f63fc0 (diff) | |
added internalPreDrop to set dropActions. made linksView turn off during dragging.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx index 702b02a20..4b5e977df 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx @@ -36,7 +36,7 @@ export class CollectionFreeFormLinksView extends React.Component { } render() { - return <div className="collectionfreeformlinksview-container"> + return SelectionManager.GetIsDragging() ? (null) : <div className="collectionfreeformlinksview-container"> <svg className="collectionfreeformlinksview-svgCanvas"> {this.uniqueConnections} </svg> |
