Comment 6 for bug 1527811

Revision history for this message
Tim Peeters (tpeeters) wrote :

I can reproduce the issue with this test program:

import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.ListItems 1.3

Rectangle {
    width: 800
    height: 600

    Standard {
        anchors.fill: parent
        text: "bla"
        onTriggered: print("bad")
        onClicked: print("good")
    }

}

when clicking, onClicked is triggered but onTriggered is not.