1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-03 20:32:07 -04:00

workspaces: ignore X scroll events

fixes #2029
This commit is contained in:
bbedward
2026-03-19 13:21:34 -04:00
parent 368536f698
commit 7f8b260560

View File

@@ -775,6 +775,11 @@ Item {
}
onWheel: wheel => {
if (Math.abs(wheel.angleDelta.x) > Math.abs(wheel.angleDelta.y)) {
wheel.accepted = false;
return;
}
if (scrollInProgress)
return;