Don't use a heavy outline on aircraft when select-all is used.

This commit is contained in:
Oliver Jowett 2016-09-15 12:38:11 +01:00
parent 5445ce143c
commit 5b8a943cee
2 changed files with 2 additions and 2 deletions

View file

@ -1064,6 +1064,7 @@ function selectAllPlanes() {
}
SelectedPlane = null;
SelectedAllPlanes = true;
for(var key in Planes) {
if (Planes[key].visible && !Planes[key].isFiltered()) {
@ -1072,7 +1073,6 @@ function selectAllPlanes() {
Planes[key].updateMarker();
}
}
SelectedAllPlanes = true;
}
refreshSelected();