Revert commit to prevent bounce when the wheel mouse is used

This commit is contained in:
Luis Ángel San Martín 2022-10-03 19:31:44 +02:00
parent 67b7c4adc9
commit 685d70c624

View File

@ -756,6 +756,17 @@ Rectangle {
grid.cellWidth = cWidth + Math.floor(rest / wholeCells); grid.cellWidth = cWidth + Math.floor(rest / wholeCells);
} }
WheelHandler {
onWheel: {
if (grid.contentHeight <= grid.height) {
return;
}
var newValue = Math.min((grid.contentHeight - grid.height - (showCurrentComic ? 270 : 20)), (Math.max(grid.originY , grid.contentY - event.angleDelta.y)));
grid.contentY = newValue;
}
}
ScrollBar.vertical: ScrollBar { ScrollBar.vertical: ScrollBar {
visible: grid.contentHeight > grid.height visible: grid.contentHeight > grid.height