aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qml/DownloadFromDiveComputer.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml
index 6f7ac709e..9dc84fce2 100644
--- a/mobile-widgets/qml/DownloadFromDiveComputer.qml
+++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml
@@ -84,6 +84,12 @@ Kirigami.Page {
comboProduct.model = manager.getProductListFromVendor(currentText)
if (currentIndex == manager.getDetectedVendorIndex())
comboProduct.currentIndex = manager.getDetectedProductIndex(currentText)
+ if (currentText === "Atomic Aquatics") {
+ comboConnection.model = [ qsTr("USB device") ]
+ comboConnection.currentIndex = 0
+ } else {
+ comboConnection.model = connectionListModel
+ }
}
}
Controls.Label { text: qsTr(" Dive Computer:") }