Commit 1560cda0 authored by dheideman's avatar dheideman

Make brand image settings respect brandImageSettings.visible

parent 23561c4a
...@@ -665,7 +665,7 @@ QGCView { ...@@ -665,7 +665,7 @@ QGCView {
height: userBrandImageLabel.height height: userBrandImageLabel.height
anchors.margins: ScreenTools.defaultFontPixelWidth anchors.margins: ScreenTools.defaultFontPixelWidth
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
visible: !ScreenTools.isMobile visible: QGroundControl.settingsManager.brandImageSettings.visible && !ScreenTools.isMobile
QGCLabel { QGCLabel {
id: userBrandImageLabel id: userBrandImageLabel
text: qsTr("Brand Image") text: qsTr("Brand Image")
...@@ -678,7 +678,7 @@ QGCView { ...@@ -678,7 +678,7 @@ QGCView {
color: qgcPal.windowShade color: qgcPal.windowShade
anchors.margins: ScreenTools.defaultFontPixelWidth anchors.margins: ScreenTools.defaultFontPixelWidth
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
visible: !ScreenTools.isMobile visible: QGroundControl.settingsManager.brandImageSettings.visible && !ScreenTools.isMobile
Column { Column {
id: userBrandImageCol id: userBrandImageCol
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment