From 8b80213b2ebf36a1a8da2279838dbc739431bc6e Mon Sep 17 00:00:00 2001 From: Soramane <61896496+soramanew@users.noreply.github.com> Date: Wed, 23 Jul 2025 13:27:59 +1000 Subject: bar: fix bluetooth when off --- modules/bar/components/StatusIcons.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/bar/components/StatusIcons.qml') diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index b2cca54..971ec4d 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -39,7 +39,7 @@ Item { anchors.topMargin: Appearance.spacing.smaller / 2 animate: true - text: Bluetooth.defaultAdapter.enabled ? "bluetooth" : "bluetooth_disabled" + text: Bluetooth.defaultAdapter?.enabled ? "bluetooth" : "bluetooth_disabled" color: root.colour } -- cgit v1.2.3-freya