From 91909f748d1a07bf52b1289c8cb05f60388c6040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 3 Sep 2022 23:53:58 +0200 Subject: [PATCH] Reenable flickable behavior in the GridView Touchpads aren't properly mapped to the wheelhandler in qt 5.15, there is a fix in Qt6 --- YACReaderLibrary/qml/GridComicsView.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/YACReaderLibrary/qml/GridComicsView.qml b/YACReaderLibrary/qml/GridComicsView.qml index 50b7db6b..d5366df5 100644 --- a/YACReaderLibrary/qml/GridComicsView.qml +++ b/YACReaderLibrary/qml/GridComicsView.qml @@ -707,8 +707,7 @@ Rectangle { currentIndex: 0 cacheBuffer: 0 - //disable flickable behaviour - interactive: false + interactive: true move: Transition { NumberAnimation { properties: "x,y"; duration: 250 }