summaryrefslogtreecommitdiffstats
path: root/src/settingsui
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsui')
-rw-r--r--src/settingsui/bluetooth/Bluetooth.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settingsui/bluetooth/Bluetooth.qml b/src/settingsui/bluetooth/Bluetooth.qml
index e89476f..4c82904 100644
--- a/src/settingsui/bluetooth/Bluetooth.qml
+++ b/src/settingsui/bluetooth/Bluetooth.qml
@@ -68,7 +68,7 @@ Item {
color: "white"
text: "Scanning"
font.family: appFont
- opacity: BtDevice.scanning ? 1.0 : 0.0
+ opacity: (BtDevice.scanning && BtDevice.powered) ? 1.0 : 0.0
visible: opacity > 0
Behavior on opacity {
NumberAnimation {duration: 150}