diff --git a/components/mobileshell/qml/dataproviders/BluetoothInfo.qml b/components/mobileshell/qml/dataproviders/BluetoothInfo.qml index 48f1e40b..f880dcd6 100644 --- a/components/mobileshell/qml/dataproviders/BluetoothInfo.qml +++ b/components/mobileshell/qml/dataproviders/BluetoothInfo.qml @@ -15,7 +15,7 @@ import org.kde.bluezqt 1.0 as BluezQt QtObject { id: root readonly property bool isVisible: BluezQt.Manager.bluetoothOperational - readonly property string icon: deviceConnected ? "preferences-system-bluetooth-activated" : "preferences-system-bluetooth" + readonly property string icon: deviceConnected ? "network-bluetooth-activated" : "network-bluetooth" property bool deviceConnected: false diff --git a/components/mobileshell/qml/statusbar/indicators/BluetoothIndicator.qml b/components/mobileshell/qml/statusbar/indicators/BluetoothIndicator.qml index f7830997..a92faf78 100644 --- a/components/mobileshell/qml/statusbar/indicators/BluetoothIndicator.qml +++ b/components/mobileshell/qml/statusbar/indicators/BluetoothIndicator.qml @@ -15,7 +15,7 @@ import org.kde.plasma.private.mobileshell as MobileShell Kirigami.Icon { id: connectionIcon - source: "network-bluetooth" + source: MobileShell.BluetoothInfo.icon visible: MobileShell.BluetoothInfo.isVisible }