I've been trying to solve this by adding a mouse area on top of each list view and although that fixes the scroll issue this isn't exactly a solution:
By adding the mouse area, all mouse events are handled by it, so a pressed, released, clicked,.. are no longer handeld by the listview delegate (as they are in the real application, e.g. change the delegate appearance on mouse down).
Of course I can propagate the events, but than the scroll issue is back (which makes sense of course).
I could also track all mouse events in the mouse area's and manually propagate them to the underlying components but it 'll be a hard job getting everything working.
So unless anybody has a solution (please). I'm stuck with te scrollview, not stealing an upward swipe from the listview.
Any help would be appreciated