aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlprofilerservice/data/timer.qml
blob: 18b894717254e53ee44aec3c23b7f45acc3a53d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    width: 100
    height: 62

    Timer {
        running: true
        repeat: true
        interval: 50
        onTriggered: height = (2 * height) % 99;
    }
}