Fix selection border on blocks that have been highlighted.

This commit is contained in:
Neil Fraser
2016-11-15 17:49:47 -08:00
parent 471e09662e
commit 8fba5cd044

View File

@@ -1520,7 +1520,7 @@ Blockly.BlockSvg.prototype.setHighlighted = function(highlighted) {
this.svgPathLight_.style.display = 'none';
} else {
this.svgPath_.removeAttribute('filter');
this.svgPathLight_.style.display = 'block';
delete this.svgPathLight_.style.display;
}
};