From 1f01a009a998fd56d454201e4204e9ca3ac6761a Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 24 Jul 2025 23:32:40 -0700 Subject: [PATCH] qs: fix bluetooth separator being visible with no devices --- .../modules/quickshell/shell/bar/connections/Bluetooth.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/user/modules/quickshell/shell/bar/connections/Bluetooth.qml b/modules/user/modules/quickshell/shell/bar/connections/Bluetooth.qml index 459938a..3e075c2 100644 --- a/modules/user/modules/quickshell/shell/bar/connections/Bluetooth.qml +++ b/modules/user/modules/quickshell/shell/bar/connections/Bluetooth.qml @@ -1,3 +1,4 @@ +pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import QtQuick.Controls @@ -101,7 +102,7 @@ ClickableIcon { Rectangle { width: parent.width implicitHeight: 1 - visible: linkTracker.linkGroups.length > 0 + visible: root.adapter.devices.values.length > 0 color: ShellGlobals.colors.separator }