diff --git a/html/planeObject.js b/html/planeObject.js index 4e90499..7b82538 100644 --- a/html/planeObject.js +++ b/html/planeObject.js @@ -608,8 +608,10 @@ PlaneObject.prototype.updateIcon = function() { var col = this.getMarkerColor(); //var opacity = 1.0; - var outline = (this.dataSource == "mlat" ? OutlineMlatColor : OutlineADSBColor); - var add_stroke = (this.selected && !SelectedAllPlanes && !onlySelected && !multiSelect) ? (' stroke="'+outline+'" stroke-width="1px"') : ''; + //var outline = (this.dataSource == "mlat" ? OutlineMlatColor : OutlineADSBColor); + //var add_stroke = (this.selected && !SelectedAllPlanes && !onlySelected && !multiSelect) ? (' stroke="'+outline+'" stroke-width="1px"') : ''; + const add_stroke = ''; + const outline = OutlineADSBColor; var baseMarkerKey = (this.category ? this.category : "A0") + "_" + this.typeDescription + "_" + this.wtc + "_" + this.icaoType; diff --git a/html/script.js b/html/script.js index 2a9b2c2..858efcd 100644 --- a/html/script.js +++ b/html/script.js @@ -2501,7 +2501,9 @@ function toggleTrackLabels() { function toggleMultiSelect() { if (multiSelect) { multiSelect = false; + var plane = SelectedPlane; deselectAllPlanes(); + selectPlaneByHex(plane.icao); } else { multiSelect = true; }