blob: 24c6f7ad91ed98e7fe9ae03fa98269d757349458 [file] [log] [blame]
import QtQuick 2.0
Item {
id: behaviorCounter
property int behaviorCount: 0
property int canary: 0
Behavior on canary {
NumberAnimation { target: behaviorCounter; property: "behaviorCount"; to: (behaviorCounter.behaviorCount + 1); duration: 0 }
}
}