diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/fillmode/fillmode.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/fillmode/fillmode.qml b/examples/declarative/fillmode/fillmode.qml index 473f553..6bf1c12 100644 --- a/examples/declarative/fillmode/fillmode.qml +++ b/examples/declarative/fillmode/fillmode.qml @@ -29,10 +29,10 @@ Image { color: "blue" style: "Outline" styleColor: "white" - anchors { centeredIn: parent } + anchors { centerIn: parent } } Rect { - pen.color: "black" + border.color: "black" color: "transparent" anchors { fill: parent; rightMargin: 1; bottomMargin: 1} } |