feat(selection): selected nodes rect

This commit is contained in:
moklick
2019-07-18 11:14:11 +02:00
parent 3cf627668b
commit 4ab04a4379
3 changed files with 13 additions and 3 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ const GraphView = (props) => {
<div className="react-graph__renderer">
<NodeRenderer nodeTypes={props.nodeTypes} />
<EdgeRenderer width={graphContext.state.width} height={graphContext.state.height} />
{shiftPressed && <Selection />}
{(shiftPressed || graphContext.state.selectedNodeIds.length) && <Selection />}
<div
className="react-graph__zoompane"
ref={zoomPane}