From e5b6fbd12a9871a786df19769342cd983c8727cb Mon Sep 17 00:00:00 2001 From: LuckShiba Date: Tue, 25 Nov 2025 03:21:06 -0300 Subject: [PATCH] bar: fix scroll on widgets that doesn't handle scroll --- quickshell/Modules/Plugins/BasePill.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/quickshell/Modules/Plugins/BasePill.qml b/quickshell/Modules/Plugins/BasePill.qml index a3928340..c5bd637a 100644 --- a/quickshell/Modules/Plugins/BasePill.qml +++ b/quickshell/Modules/Plugins/BasePill.qml @@ -143,6 +143,7 @@ Item { root.clicked(); } onWheel: function (wheelEvent) { + wheelEvent.accepted = false; root.wheel(wheelEvent); } }