From 4055fa7cae87feec80d93cbc2c810d388d66d78d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 22 May 2026 11:02:46 +0200 Subject: [PATCH] Use uppercase Bluetooth panel headers --- shell/plugins/panels/Bluetooth.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/plugins/panels/Bluetooth.qml b/shell/plugins/panels/Bluetooth.qml index 907c0eba..2f7cc81e 100644 --- a/shell/plugins/panels/Bluetooth.qml +++ b/shell/plugins/panels/Bluetooth.qml @@ -558,7 +558,7 @@ Panel { // Connected devices. PanelSectionHeader { visible: root.connectedDevices.length > 0 - text: "Connected" + text: "CONNECTED" foreground: root.bar.foreground fontFamily: root.bar.fontFamily } @@ -579,7 +579,7 @@ Panel { // Remembered devices. PanelSectionHeader { visible: root.knownDevices.length > 0 - text: "Paired" + text: "PAIRED" foreground: root.bar.foreground fontFamily: root.bar.fontFamily } @@ -600,7 +600,7 @@ Panel { // Discovered (unpaired) devices, only shown while scanning. PanelSectionHeader { visible: root.adapter && root.adapter.discovering && root.discoveredDevices.length > 0 - text: "Available" + text: "AVAILABLE" foreground: root.bar.foreground fontFamily: root.bar.fontFamily }