Comment 5 for bug 1307701

Revision history for this message
Olli Ries (ories) wrote : Re: Unity does not get touch events when SDK apps running

also, happens with a non-SDK app, e.g. from http://qt-project.org/doc/qt-5/qml-tutorial2.html

import QtQuick 2.0

Item {
    id: container
    property alias cellColor: rectangle.color
    signal clicked(color cellColor)

    width: 40; height: 25

    Rectangle {
        id: rectangle
        border.color: "white"
        anchors.fill: parent
    }

    MouseArea {
        anchors.fill: parent
        onClicked: container.clicked(container.cellColor)
    }
}