From 3b2ad9d1bd9022a269361912e8f29bba707fed13 Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 18 Feb 2026 10:12:15 -0500 Subject: [PATCH] running apps: fix scroll events being propagated fixes #1724 --- quickshell/Modules/DankBar/Widgets/RunningApps.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/quickshell/Modules/DankBar/Widgets/RunningApps.qml b/quickshell/Modules/DankBar/Widgets/RunningApps.qml index 76cfb7f0..95ace37c 100644 --- a/quickshell/Modules/DankBar/Widgets/RunningApps.qml +++ b/quickshell/Modules/DankBar/Widgets/RunningApps.qml @@ -155,6 +155,7 @@ BasePill { property real touchpadThreshold: 500 onWheel: function (wheelEvent) { + wheelEvent.accepted = true; const deltaY = wheelEvent.angleDelta.y; const isMouseWheel = Math.abs(deltaY) >= 120 && (Math.abs(deltaY) % 120) === 0;