Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.6.2
-
None
Description
When putting a MapView inside a non-interactive SwipeView, the MapViews PinchHandler doesn't work anymore.
Apparently the Flickable (SwipeView has a ListView as contentItem) steals touch events from the PinchHandler although it should be inactive.
Without the SwipeVIew, the MapView works like a charm.
Example code:
import QtQuick import QtQuick.Controls import QtLocation ApplicationWindow { visible: true SwipeView { anchors.fill: parent interactive: false MapView { map.plugin: Plugin { id: mapPlugin name: "osm" } } } }