From 822b05bec4c81a35720f3c1e504a2a36f861d13a Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 9 Mar 2020 14:41:55 -0700 Subject: mobile/download: only use device guess if no USB device plugged in If we explicitly open the download page after the use plugged in a USB device, don't try to use guesses from the BT/BLE pairings to populate the device/connection dropdowns. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DownloadFromDiveComputer.qml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml') diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index ca55bfef8..84467858e 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -23,6 +23,7 @@ Kirigami.Page { property alias vendor: comboVendor.currentIndex property alias product: comboProduct.currentIndex property alias connection: comboConnection.currentIndex + property bool setupUSB: false DCImportModel { id: importModel @@ -224,6 +225,7 @@ Kirigami.Page { spacing: Kirigami.Units.smallSpacing; Layout.fillWidth: true function setDC(vendor, product, device) { + manager.appendTextToLog("setDC called with " + vendor + "/" + product + "/" + device) comboVendor.currentIndex = comboVendor.find(vendor); comboProduct.currentIndex = comboProduct.find(product); comboConnection.currentIndex = manager.getConnectionIndex(device); @@ -477,12 +479,17 @@ Kirigami.Page { } onVisibleChanged: { - comboVendor.currentIndex = comboProduct.currentIndex = comboConnection.currentIndex = -1 - dc1.enabled = dc2.enabled = dc3.enabled = dc4.enabled = true - if (visible) { - comboVendor.currentIndex = manager.getDetectedVendorIndex() - comboProduct.currentIndex = manager.getDetectedProductIndex(comboVendor.currentText) - comboConnection.currentIndex = manager.getMatchingAddress(comboVendor.currentText, comboProduct.currentText) + if (!setupUSB) { + // if we aren't called with a known USB connection, check if we can find + // a known BT/BLE device + manager.appendTextToLog("download page -- looking for known BT/BLE device") + comboVendor.currentIndex = comboProduct.currentIndex = comboConnection.currentIndex = -1 + dc1.enabled = dc2.enabled = dc3.enabled = dc4.enabled = true + if (visible) { + comboVendor.currentIndex = manager.getDetectedVendorIndex() + comboProduct.currentIndex = manager.getDetectedProductIndex(comboVendor.currentText) + comboConnection.currentIndex = manager.getMatchingAddress(comboVendor.currentText, comboProduct.currentText) + } } } } -- cgit v1.2.3-70-g09d2