Yes, make your MouseArea smaller ;) After all, your selectable items will not occupy the whole content area?
Also, you might consider using this to pass the even to the Flickable:
MouseArea {
anchors.fill: parent
preventStealing: true
onClicked: {
console.log("clicked")
mouse.accepted = false
// or: event.accepted = false
}
}
↧