From 35ee0cd0ed57977ca61bc9ab5f0a3346cb2c4e69 Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Sun, 20 Jan 2019 13:58:47 -0500 Subject: [PATCH] CP - Disable network settings on Android and iOS as they use a different link type (USB). --- src/Taisync/TaisyncSettings.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Taisync/TaisyncSettings.qml b/src/Taisync/TaisyncSettings.qml index a002b84e4..82513fa9b 100644 --- a/src/Taisync/TaisyncSettings.qml +++ b/src/Taisync/TaisyncSettings.qml @@ -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 { -- 2.22.0