diff --git a/simple-mind-map/src/Node.js b/simple-mind-map/src/Node.js index fa208f11..8f1b8267 100644 --- a/simple-mind-map/src/Node.js +++ b/simple-mind-map/src/Node.js @@ -339,6 +339,9 @@ class Node { this.active(e) }) this.group.on('mousedown', e => { + if (this.isRoot && e.which === 3) { + e.stopPropagation() + } if (!this.isRoot) { e.stopPropagation() }