From 2ca83819872d82fa0ee8dbfccfbfcf3480c279f1 Mon Sep 17 00:00:00 2001 From: nydragon Date: Mon, 10 Feb 2025 18:37:56 +0100 Subject: [PATCH] fix: hide battery pill and brightness slider if features are not available --- src/Dashboard.qml | 1 + src/widgets/battery/Battery.qml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Dashboard.qml b/src/Dashboard.qml index 643e025..c7d9614 100644 --- a/src/Dashboard.qml +++ b/src/Dashboard.qml @@ -123,6 +123,7 @@ PanelWindow { Text { text: "brightness" + visible: NyshState.binBrightnessctl } Slider { diff --git a/src/widgets/battery/Battery.qml b/src/widgets/battery/Battery.qml index 8499a9e..dec20e4 100644 --- a/src/widgets/battery/Battery.qml +++ b/src/widgets/battery/Battery.qml @@ -4,7 +4,7 @@ import QtQuick import QtQuick.Layouts BRectangle { - visible: UPower.displayDevice != null + visible: UPower.displayDevice.ready height: width * 2 Rectangle {