Skip to content

Commit 23eb65e

Browse files
rubenp02DonLakeFlyer
authored andcommitted
Fix overlap between Go here and Orbit map items
Added a visibility condition to the Orbit map item to hide it when the orbit is part of a Go To action, preventing both items from overlapping.
1 parent ec7a337 commit 23eb65e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FlightDisplay/FlyViewMap.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ FlightMap {
523523
anchorPoint.x: sourceItem.anchorPointX
524524
anchorPoint.y: sourceItem.anchorPointY
525525
coordinate: _activeVehicle ? _activeVehicle.orbitMapCircle.center : QtPositioning.coordinate()
526-
visible: orbitTelemetryCircle.visible
526+
visible: orbitTelemetryCircle.visible && !gotoLocationItem.visible
527527

528528
sourceItem: MissionItemIndexLabel {
529529
checked: true

0 commit comments

Comments
 (0)