Commit 35ee0cd0 authored by Gus Grubba's avatar Gus Grubba

CP - Disable network settings on Android and iOS as they use a different link type (USB).

parent 2c7fb093
......@@ -438,7 +438,7 @@ QGCView {
height: ipSettingsLabel.height
anchors.margins: ScreenTools.defaultFontPixelWidth
anchors.horizontalCenter: parent.horizontalCenter
visible: _taisyncEnabled
visible: _taisyncEnabled && (!ScreenTools.isiOS && !ScreenTools.isAndroid)
QGCLabel {
id: ipSettingsLabel
text: qsTr("Network Settings")
......@@ -449,7 +449,7 @@ QGCView {
height: ipSettingsCol.height + (ScreenTools.defaultFontPixelHeight * 2)
width: _panelWidth
color: qgcPal.windowShade
visible: _taisyncEnabled
visible: _taisyncEnabled && (!ScreenTools.isiOS && !ScreenTools.isAndroid)
anchors.margins: ScreenTools.defaultFontPixelWidth
anchors.horizontalCenter: parent.horizontalCenter
Column {
......
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