1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

Merge pull request #809 from LuckShiba/fix-scroll

bar: fix scroll on widgets that doesn't handle scroll
This commit is contained in:
purian23
2025-11-25 01:24:45 -05:00
committed by GitHub

View File

@@ -143,6 +143,7 @@ Item {
root.clicked(); root.clicked();
} }
onWheel: function (wheelEvent) { onWheel: function (wheelEvent) {
wheelEvent.accepted = false;
root.wheel(wheelEvent); root.wheel(wheelEvent);
} }
} }