From c538505f940ab25f0c1661426af8432b4cfca8d6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 15 Mar 2026 17:31:28 +0100 Subject: [PATCH] hefty: bar: resources: dont keep settings open --- .../ii/modules/hefty/topLayer/bar/widgets/HResources.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HResources.qml b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HResources.qml index 7abda0bda..f4faf3f8f 100644 --- a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HResources.qml +++ b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HResources.qml @@ -223,11 +223,11 @@ HBarWidgetWithPopout { component SysInfoPopupContent: W.ChoreographerLoader { id: sysInfoPopupContent - property bool showSettings: false sourceComponent: W.ChoreographerGridLayout { id: popupRoot rowSpacing: 10 + property bool showSettings: false onShownChanged: { if (shown) { @@ -266,13 +266,13 @@ HBarWidgetWithPopout { implicitSize: C.Appearance.rounding.normal * 2 text: "settings" iconSize: 20 - onClicked: sysInfoPopupContent.showSettings = !sysInfoPopupContent.showSettings; - checked: sysInfoPopupContent.showSettings + onClicked: popupRoot.showSettings = !popupRoot.showSettings; + checked: popupRoot.showSettings } } W.FadeLoader { - shown: sysInfoPopupContent.showSettings + shown: popupRoot.showSettings Layout.fillWidth: true sourceComponent: SysInfoPopupConfig {} }