| Index: tools/turbolizer/selection.js
|
| diff --git a/tools/turbolizer/selection.js b/tools/turbolizer/selection.js
|
| index e9c02dda9e70e4883ce133c29dd1751c94fe5b59..26f1bde197260650d5c669a6011ad4f354ecf30f 100644
|
| --- a/tools/turbolizer/selection.js
|
| +++ b/tools/turbolizer/selection.js
|
| @@ -40,6 +40,7 @@ Selection.prototype.select = function(s, isSelected) {
|
| }
|
| this.selection.add(i);
|
| }
|
| + handler.select(this.selection, true);
|
| } else {
|
| let unselectSet = new Set();
|
| for (let i of s) {
|
| @@ -48,8 +49,8 @@ Selection.prototype.select = function(s, isSelected) {
|
| this.selection.delete(i);
|
| }
|
| }
|
| + handler.select(unselectSet, false);
|
| }
|
| - handler.select(this.selection, isSelected);
|
| }
|
|
|
|
|
|
|