diff --git a/qgcresources.qrc b/qgcresources.qrc index 25e0e8baa1608979a8cf2025ba56125edbd19d3b..4e2602e2cf0d7aa8e6778e3a7761c3b31d3b7609 100644 --- a/qgcresources.qrc +++ b/qgcresources.qrc @@ -185,6 +185,7 @@ resources/Play.svg resources/PowerButton.svg resources/QGCLogoBlack.svg + resources/QGCLogoFull.svg resources/QGCLogoWhite.svg resources/QGroundControlConnect.svg resources/rtl.svg diff --git a/resources/QGCLogoFull.svg b/resources/QGCLogoFull.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d7fdb67e8762e5e32dbc94930a456585e09a84b --- /dev/null +++ b/resources/QGCLogoFull.svg @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/FlightMap/FlightMap.qml b/src/FlightMap/FlightMap.qml index d774b3699da5a4d173e31b8c9bc7a1709f7879e2..8914e6146966b693bf56763cd8a6befdd01cea04 100644 --- a/src/FlightMap/FlightMap.qml +++ b/src/FlightMap/FlightMap.qml @@ -117,12 +117,16 @@ Map { /// Ground Station location MapQuickItem { - anchorPoint.x: sourceItem.anchorPointX - anchorPoint.y: sourceItem.anchorPointY + anchorPoint.x: sourceItem.width / 2 + anchorPoint.y: sourceItem.height / 2 visible: gcsPosition.isValid coordinate: gcsPosition - sourceItem: MissionItemIndexLabel { - label: QGroundControl.appName.charAt(0) + + sourceItem: Image { + source: "/res/QGCLogoFull" + smooth: true + fillMode: Image.PreserveAspectFit + height: ScreenTools.defaultFontPixelHeight * 1.5 } } } // Map