diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-11-11 02:56:47 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-11-11 08:08:29 (GMT) |
commit | edd306f681d3c53d00c0a99c68775615cc0a2d5e (patch) | |
tree | eca739e1ebb707024306bc93e20862daa5df362c /demos/declarative/minehunt/test.qml | |
parent | 8e5166aba8c8d79e47d4c4fccd5acf52f9cffec6 (diff) | |
download | Qt-edd306f681d3c53d00c0a99c68775615cc0a2d5e.zip Qt-edd306f681d3c53d00c0a99c68775615cc0a2d5e.tar.gz Qt-edd306f681d3c53d00c0a99c68775615cc0a2d5e.tar.bz2 |
Fix minehunt demo
Diffstat (limited to 'demos/declarative/minehunt/test.qml')
-rw-r--r-- | demos/declarative/minehunt/test.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/demos/declarative/minehunt/test.qml b/demos/declarative/minehunt/test.qml new file mode 100644 index 0000000..11ed182 --- /dev/null +++ b/demos/declarative/minehunt/test.qml @@ -0,0 +1,13 @@ +import Qt 4.6 + + Image { + source: "pics/front.png" + width: 40 + height: 40 + Image { + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + source: "pics/flag.png" + opacity: 1 + } + } |