Skip to content

Fix touch on PointerHandlers

Marco Martin requested to merge work/mart/fixTouchOnQML into master

The events we forward to the offscreen QML view are with our own QPointingDevice instance, which has a devicetype of touch but a null pointerType.

In Qt5 this was enough, but pointerhandlers in qt6 refuse events with an undefined pointertype, so we have to explicitly set it to finger

BUG:473541

Merge request reports