Comment 47 for bug 1257791

Revision history for this message
Daniel d'Andrada (dandrader) wrote :

The patch I made to qtdeclarative makes all events (touch, keyboard, etc) reach QQuickItems through their QObject::event() methods. Before that QQuickWindow was calling QQuickItems internal event handlers directly (e.g. QQuickItemPrivate::handleTouchEvent(), etc).

Because of that it's important that you let your QQuickItems process the events it receives. But it seems that's not happening with KTerminalDisplay.

The patch I'm attaching should solve it.

NB: The only place where I found konsole-qml-plugin was ~hiroshidi/ubuntu-terminal-app/konsole-qml-plugin. But I'm not sure if this where its upstream lives as it conflicts with code in lp:ubuntu-terminal-app (Qml complains about use of unexisting properties from KTerminal and KSession). Thus I was unable to properly test my path