From 074aebbe5d946f0ab53832b999b68fa0efaa82af Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 20 Sep 2025 09:49:57 +0200 Subject: [PATCH] tray: fix checkbuttons' clickability in menus --- .config/quickshell/ii/modules/bar/SysTrayMenuEntry.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/quickshell/ii/modules/bar/SysTrayMenuEntry.qml b/.config/quickshell/ii/modules/bar/SysTrayMenuEntry.qml index 04d62087f..59f3325c4 100644 --- a/.config/quickshell/ii/modules/bar/SysTrayMenuEntry.qml +++ b/.config/quickshell/ii/modules/bar/SysTrayMenuEntry.qml @@ -72,11 +72,9 @@ RippleButton { active: root.menuEntry.buttonType === QsMenuButtonType.RadioButton sourceComponent: StyledRadioButton { + enabled: false padding: 0 checked: root.menuEntry.checkState === Qt.Checked - onCheckedChanged: { - if (checked) root.clicked() - } } }