Skip to content
Snippets Groups Projects
Commit b481c38e authored by Pierre Lamot's avatar Pierre Lamot Committed by Hugo Beauzée-Luyssen
Browse files

qt: add touch screen support for DComp compositor

  fix: #25486
parent bb14abfc
No related branches found
No related tags found
1 merge request!497qt: add touch screen support for DComp compositor
Pipeline #124920 passed with stage
in 38 minutes and 41 seconds
......@@ -662,8 +662,15 @@ bool CompositorDCompositionUISurface::eventFilter(QObject* object, QEvent* event
case QEvent::DragLeave:
case QEvent::DragResponse:
case QEvent::Drop:
case QEvent::TouchBegin:
case QEvent::TouchEnd:
case QEvent::TouchCancel:
case QEvent::TouchUpdate:
return QCoreApplication::sendEvent(m_uiWindow, event) || event->isAccepted();
case QEvent::KeyPress:
case QEvent::KeyRelease:
return QCoreApplication::sendEvent(m_uiWindow, event);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment