Commit 0b42f1e6 authored by Alex Blasche's avatar Alex Blasche
Browse files

Fix lowenergyscanner when dealing with device scan errors


Previously the error was indicated but other UI elements were still
giving the impression that the scan was ongoing.

Change-Id: Iafab8f43bff3303eb6ad5e3385db2f81288d2e66
Reviewed-by: default avatarTimur Pocheptsov <Timur.Pocheptsov@digia.com>
Reviewed-by: default avatarAlex Blasche <alexander.blasche@digia.com>
Showing with 16 additions and 4 deletions
...@@ -68,6 +68,7 @@ Rectangle { ...@@ -68,6 +68,7 @@ Rectangle {
text: menuText text: menuText
elide: Text.ElideMiddle elide: Text.ElideMiddle
color: "#E3E3E3" color: "#E3E3E3"
wrapMode: Text.WordWrap
} }
MouseArea { MouseArea {
......
...@@ -137,8 +137,12 @@ Rectangle { ...@@ -137,8 +137,12 @@ Rectangle {
menuText: device.update menuText: device.update
onButtonClick: { onButtonClick: {
device.startDeviceDiscovery(); device.startDeviceDiscovery();
info.dialogText = "Searching..."; // if startDeviceDiscovery() failed device.state is not set
info.visible = true;} if (device.state) {
info.dialogText = "Searching...";
info.visible = true;
}
}
} }
Loader { Loader {
......
...@@ -86,8 +86,11 @@ void Device::startDeviceDiscovery() ...@@ -86,8 +86,11 @@ void Device::startDeviceDiscovery()
//! [les-devicediscovery-2] //! [les-devicediscovery-2]
discoveryAgent->start(); discoveryAgent->start();
//! [les-devicediscovery-2] //! [les-devicediscovery-2]
m_deviceScanState = true;
Q_EMIT stateChanged(); if (discoveryAgent->isActive()) {
m_deviceScanState = true;
Q_EMIT stateChanged();
}
} }
//! [les-devicediscovery-3] //! [les-devicediscovery-3]
...@@ -302,6 +305,10 @@ void Device::deviceScanError(QBluetoothDeviceDiscoveryAgent::Error error) ...@@ -302,6 +305,10 @@ void Device::deviceScanError(QBluetoothDeviceDiscoveryAgent::Error error)
setUpdate("Writing or reading from the device resulted in an error."); setUpdate("Writing or reading from the device resulted in an error.");
else else
setUpdate("An unknown error has occurred."); setUpdate("An unknown error has occurred.");
m_deviceScanState = false;
emit devicesUpdated();
emit stateChanged();
} }
bool Device::state() bool Device::state()
......
Supports Markdown
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