diff --git a/client/src/map/map.ts b/client/src/map/map.ts index 7e9d51ab..e2e7c8ba 100644 --- a/client/src/map/map.ts +++ b/client/src/map/map.ts @@ -751,11 +751,16 @@ export class Map extends L.Map { const singleCursor = !this.#shiftKey; const selectedUnitsCount = getApp().getUnitsManager().getSelectedUnits({ excludeHumans: true, onlyOnePerGroup: true }).length; if (selectedUnitsCount > 0) { - if (singleCursor && this.#destinationPreviewCursors.length != 1) { - this.#hideDestinationCursors(); - var marker = new DestinationPreviewMarker(this.getMouseCoordinates(), { interactive: false }); - marker.addTo(this); - this.#destinationPreviewCursors = [marker]; + if (singleCursor) { + if ( this.#destinationPreviewCursors.length != 1) { + this.#hideDestinationCursors(); + var marker = new DestinationPreviewMarker(this.getMouseCoordinates(), { interactive: false }); + marker.addTo(this); + this.#destinationPreviewCursors = [marker]; + } + + this.#destinationPreviewHandleLine.removeFrom(this); + this.#destinationPreviewHandle.removeFrom(this); } else if (!singleCursor) { while (this.#destinationPreviewCursors.length > selectedUnitsCount) { diff --git a/client/views/panels/unitcontrol.ejs b/client/views/panels/unitcontrol.ejs index 0b531010..d58de65f 100644 --- a/client/views/panels/unitcontrol.ejs +++ b/client/views/panels/unitcontrol.ejs @@ -63,14 +63,14 @@

Enable tanker

-
+
Instructs the unit to operate as AAR tanker. More options available in Settings dialog.
-

Enable AWACS

-
-
Instructs the unit to operate as AWACS. More options available in Settings dialog.
+

Airborne Early Warning

+
+
Instructs the unit to operate as airborne early warning. More options available in Settings dialog.