diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/bluetooth/Bluetooth.qml | 2 | ||||
-rw-r--r-- | app/wifi/Wifi.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/bluetooth/Bluetooth.qml b/app/bluetooth/Bluetooth.qml index cd0d982..e8cca1a 100644 --- a/app/bluetooth/Bluetooth.qml +++ b/app/bluetooth/Bluetooth.qml @@ -302,7 +302,7 @@ SettingPage { //Timer for periodic refresh; this is BAD solution, need to figure out how to subscribe for events Timer { id: periodicRefresh - interval: (currentState == "idle")? 10000:1000 // 1second + interval: (currentState == "idle")? 10000:5000 // 5seconds onTriggered: { btDeviceList.clear() diff --git a/app/wifi/Wifi.qml b/app/wifi/Wifi.qml index 8f2fff2..e0ae950 100644 --- a/app/wifi/Wifi.qml +++ b/app/wifi/Wifi.qml @@ -399,7 +399,7 @@ SettingPage { //Timer for periodic refresh; this is BAD solution, need to figure out how to subscribe for events Timer { id: periodicRefresh - interval: 1000 // 1second + interval: 5000 // 5seconds onTriggered: { networkList.clear() |