From 2db4b33fe21fbb4d157c4f12e3888cc5f3afeb2c Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 19 Jun 2025 23:29:25 +0200 Subject: [PATCH] fix configswitch not working when clicking the actual switch --- .config/quickshell/modules/common/widgets/ConfigSwitch.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/quickshell/modules/common/widgets/ConfigSwitch.qml b/.config/quickshell/modules/common/widgets/ConfigSwitch.qml index bbb60f06f..2d317a6be 100644 --- a/.config/quickshell/modules/common/widgets/ConfigSwitch.qml +++ b/.config/quickshell/modules/common/widgets/ConfigSwitch.qml @@ -23,6 +23,7 @@ RippleButton { scale: 0.75 Layout.fillWidth: false checked: root.checked + onClicked: root.clicked() } } }