Rewrite the canvas item's paint logic.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeanchors / data / hvCenter.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 77; height: 95
5     Rectangle {
6         objectName: "centered"
7         width: 57; height: 57; color: "blue"
8         anchors.verticalCenter: parent.verticalCenter
9         anchors.horizontalCenter: parent.horizontalCenter
10     }
11 }