From c56245a9545954996dd8f05ff5748d1d4013ed4c Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Thu, 22 Sep 2016 15:28:51 +0100 Subject: [PATCH] Don't change marker color when using select-all. --- public_html/planeObject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/planeObject.js b/public_html/planeObject.js index ee76dd2..04f007e 100644 --- a/public_html/planeObject.js +++ b/public_html/planeObject.js @@ -272,7 +272,7 @@ PlaneObject.prototype.getMarkerColor = function() { } // If this marker is selected, change color - if (this.selected){ + if (this.selected && !SelectedAllPlanes){ h += ColorByAlt.selected.h; s += ColorByAlt.selected.s; l += ColorByAlt.selected.l;