- 
    
Bug
 - 
    Resolution: Done
 - 
    
P2: Important
 - 
    5.2.1, 5.11.1
 
- 
        
 - 
        b8e4975c7a274f7bd1dd1fa20016c34c62045a04
 
A signal adds an item to a ListView every 1000 msec. There is a Transition that runs animations either every 500 msec or every 10000 msec and I monitor the Transition property 'running'.
With the duration of 500 'running' toggles as expected, but with 10000 it gets set to true and remains so, even when I stop adding items.
This is a snippet to illustrate the salient 
 part:
add: Transition {
    onRunningChanged: 
NumberAnimation
{ properties: "x"; from: trans.localVrnOrigin.x; duration: list.animationDuration }NumberAnimation
{ properties: "y"; from: trans.localVrnOrigin.y; duration: list.animationDuration }}
addDisplaced: Transition {
    NumberAnimation 
}