diff options
author | Bea Lam <bea.lam@nokia.com> | 2011-03-21 03:20:36 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2011-03-21 03:30:11 (GMT) |
commit | 40db21b1d8a020291f0a0660d30491b49f49885b (patch) | |
tree | e36531625ff4b35f227a4d31a6a443c30b2fcb6c /examples/declarative/righttoleft/layoutdirection | |
parent | 9f99d85769b3c1c68dd8c9fd9afa1f09c9eeb2e9 (diff) | |
download | Qt-40db21b1d8a020291f0a0660d30491b49f49885b.zip Qt-40db21b1d8a020291f0a0660d30491b49f49885b.tar.gz Qt-40db21b1d8a020291f0a0660d30491b49f49885b.tar.bz2 |
fixes/improvements for new QML right-to-left docs
Clarify some of the docs and fix some broken doc links.
Diffstat (limited to 'examples/declarative/righttoleft/layoutdirection')
-rw-r--r-- | examples/declarative/righttoleft/layoutdirection/layoutdirection.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/righttoleft/layoutdirection/layoutdirection.qml b/examples/declarative/righttoleft/layoutdirection/layoutdirection.qml index ff641d7..b4efebe 100644 --- a/examples/declarative/righttoleft/layoutdirection/layoutdirection.qml +++ b/examples/declarative/righttoleft/layoutdirection/layoutdirection.qml @@ -161,7 +161,7 @@ Rectangle { anchors.horizontalCenter: parent.horizontalCenter } Text { - text: "(click here)" + text: "(click here to toggle)" color: "white" font.pixelSize: 10 font.italic: true @@ -187,13 +187,13 @@ Rectangle { Column { anchors.centerIn: parent Text { - text: root.mirror ? "Mirrored" : "Normal" + text: root.mirror ? "Mirrored" : "Not mirrored" color: "white" font.pixelSize: 16 anchors.horizontalCenter: parent.horizontalCenter } Text { - text: "(click here)" + text: "(click here to toggle)" color: "white" font.pixelSize: 10 font.italic: true |