From 00459606cee5b43c77e77041a1c3228a452f2f01 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sun, 14 Sep 2025 18:19:02 -0400 Subject: [PATCH] Brightness: hotfix --- Modules/Bar/Widgets/Brightness.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/Bar/Widgets/Brightness.qml b/Modules/Bar/Widgets/Brightness.qml index 0371848..6e52a1a 100644 --- a/Modules/Bar/Widgets/Brightness.qml +++ b/Modules/Bar/Widgets/Brightness.qml @@ -80,7 +80,6 @@ Item { icon: getIcon() autoHide: false // Important to be false so we can hover as long as we want text: { - return "" var monitor = getMonitor() return monitor ? Math.round(monitor.brightness * 100) : "" }