diff --git a/src/selection/Selection.js b/src/selection/Selection.js index f51f495797..b8a5700bc5 100644 --- a/src/selection/Selection.js +++ b/src/selection/Selection.js @@ -29,6 +29,7 @@ define(['EventEmitter'], function (EventEmitter) { Selection.prototype = Object.create(EventEmitter.prototype); Selection.prototype.add = function (path) { + this.clear(); // Only allow single select as initial simplification this.selected.push(path); this.emit('change'); };