Remove hack to keep content inside the grid view content size

This seems no longer necessary in Qt6 (maybe it got fixed after bumping QtQuick to 2.15)
This commit is contained in:
Luis Ángel San Martín 2022-09-30 23:36:23 +02:00
parent c255182b1c
commit 1b36dd7de9

View File

@ -755,17 +755,6 @@ Rectangle {
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 {
visible: grid.contentHeight > grid.height