aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data/htiling.qml
blob: eb7222a7676b41f4a501d4a83144a19f7342f799 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Rectangle {
    width: 200; height: 200

    Image {
        objectName: "tiling"; anchors.fill: parent
        source: "green.png"; fillMode: Image.TileHorizontally
    }
}