|
|
|
@ -578,7 +578,7 @@ QGCView {
@@ -578,7 +578,7 @@ QGCView {
|
|
|
|
|
anchors.right: parent.right |
|
|
|
|
width: ScreenTools.defaultFontPixelHeight * 1.5 |
|
|
|
|
height: ScreenTools.defaultFontPixelHeight * 1.5 |
|
|
|
|
source: "/qmlimages/XDelete.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/XDeleteBlack.svg" : "/qmlimages/XDelete.svg" |
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
@ -616,7 +616,7 @@ QGCView {
@@ -616,7 +616,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/MapAddMission.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/MapAddMissionBlack.svg" : "/qmlimages/MapAddMission.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -638,7 +638,7 @@ QGCView {
@@ -638,7 +638,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/TrashDelete.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/TrashDeleteBlack.svg" : "/qmlimages/TrashDelete.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -660,7 +660,7 @@ QGCView {
@@ -660,7 +660,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/MapHome.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/MapHomeBlack.svg" : "/qmlimages/MapHome.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -683,7 +683,7 @@ QGCView {
@@ -683,7 +683,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/MapCenter.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/MapCenterBlack.svg" : "/qmlimages/MapCenter.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -705,7 +705,7 @@ QGCView {
@@ -705,7 +705,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/MapSync.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/MapSyncBlack.svg" : "/qmlimages/MapSync.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -727,7 +727,7 @@ QGCView {
@@ -727,7 +727,7 @@ QGCView {
|
|
|
|
|
fillMode: Image.PreserveAspectFit |
|
|
|
|
mipmap: true |
|
|
|
|
smooth: true |
|
|
|
|
source: "/qmlimages/MapType.svg" |
|
|
|
|
source: (qgcPal.globalTheme === QGCPalette.Light) ? "/qmlimages/MapTypeBlack.svg" : "/qmlimages/MapType.svg" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCLabel { |
|
|
|
@ -742,12 +742,13 @@ QGCView {
@@ -742,12 +742,13 @@ QGCView {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QGCCheckBox { |
|
|
|
|
anchors.left: parent.left |
|
|
|
|
anchors.bottom: parent.bottom |
|
|
|
|
checked: !_showHelp |
|
|
|
|
text: "Don't show me again" |
|
|
|
|
anchors.left: parent.left |
|
|
|
|
anchors.bottom: parent.bottom |
|
|
|
|
anchors.margins: _margin |
|
|
|
|
checked: !_showHelp |
|
|
|
|
text: "Don't show me again" |
|
|
|
|
|
|
|
|
|
onClicked: QGroundControl.flightMapSettings.saveBoolMapSetting(editorMap.mapName, _showHelpKey, !checked) |
|
|
|
|
onClicked: QGroundControl.flightMapSettings.saveBoolMapSetting(editorMap.mapName, _showHelpKey, !checked) |
|
|
|
|
} |
|
|
|
|
} // Item - margin |
|
|
|
|
} // Item - Help Panel |
|
|
|
|