summaryrefslogtreecommitdiffstats
path: root/demos/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml
blob: 919ac434345f861b613253b7e10976f71c49802d (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6

Image {
    id: container
    property bool on: false

    source: "images/busy.png"; visible: container.on
    NumberAnimation on rotation { running: container.on; from: 0; to: 360; repeat: true; duration: 1200 }
}