Quantcast
Viewing latest article 2
Browse Latest Browse All 4972

Disable Delegate's MouseArea until ViewTransitions have finished

No need for that just bind the runnig property. ListView { ... delegate: Rectangle {    ...    MouseArea {        anchors.fill: parent        enabled: !myTrans.running    } } ... add: Transition {         id: myTrans         NumberAnimation { properties: "y"; from: 100; duration:5000 }         } }

Viewing latest article 2
Browse Latest Browse All 4972

Trending Articles