From 5d83402e759aae588a169a7885cee7d26e8de495 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 23 Jul 2026 16:19:29 -0700 Subject: [PATCH] No need to count the displays --- shell/plugins/panels/monitor/Panel.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shell/plugins/panels/monitor/Panel.qml b/shell/plugins/panels/monitor/Panel.qml index 84117c86..b12ce8eb 100644 --- a/shell/plugins/panels/monitor/Panel.qml +++ b/shell/plugins/panels/monitor/Panel.qml @@ -520,8 +520,7 @@ Panel { if (root.brightnessAvailable) { return root.brightnessName(brightnessSlider.dragging ? brightnessSlider.liveValue : root.brightnessPercent).toUpperCase() } - var count = root.enabledDisplayCount - return (count === 1 ? "1 display" : count + " displays").toUpperCase() + return "FIXED BRIGHTNESS" } color: Qt.darker(root.bar.foreground, 1.4) font.family: root.bar.fontFamily