fix launcher scrolling pin button interrupt

This commit is contained in:
Henry Riehl
2026-02-14 20:07:15 +00:00
parent a39c94bd77
commit 3ba93cdb7f
+4 -1
View File
@@ -122,6 +122,9 @@ Item {
root.middleClicked();
}
}
onWheel: wheel => root.wheel(wheel.angleDelta.y)
onWheel: wheel => {
root.wheel(wheel.angleDelta.y);
wheel.accepted = false;
}
}
}