summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Burke <patrick.burke@nokia.com>2011-11-16 16:51:13 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-17 02:18:31 +0100
commite556eee57ff8e6175401e06e2e823aa9d981172b (patch)
tree5959e4ca709d331b82e4a41fd627ea5c68ff198f
parent850a561a83b5da4a620b5bba1812919d58600c56 (diff)
ModelTweaker: Help fixes to 33cf3598ff4b8913d6682e48a5af14471d80740c
Change-Id: I41e456bc29bf656cffcda3c3222c20c17c250103 Reviewed-by: Sarah Jane Smith <sarah.j.smith@nokia.com>
-rw-r--r--util/qt3d/modeltweak/qml/HelpOverlay.qml8
1 files changed, 3 insertions, 5 deletions
diff --git a/util/qt3d/modeltweak/qml/HelpOverlay.qml b/util/qt3d/modeltweak/qml/HelpOverlay.qml
index 732ccd6c..88c52661 100644
--- a/util/qt3d/modeltweak/qml/HelpOverlay.qml
+++ b/util/qt3d/modeltweak/qml/HelpOverlay.qml
@@ -20,7 +20,7 @@ Rectangle {
Text {
id: header
font { pixelSize: 32; italic: true }
- text: "Help!"
+ text: "ModelTweaker Help"
anchors.top: parent.top
anchors.topMargin: 16
anchors.horizontalCenter: parent.horizontalCenter
@@ -34,8 +34,8 @@ Rectangle {
anchors.rightMargin: 16
textFormat: Text.RichText
wrapMode: Text.WordWrap
- text: "Apparently you're having problems." +
- "<ul><li>Clicking on one of the panes with the <b>Left Mouse Button</b> and dragging with translate the position.</li>" +
+ text: "Altering model parameters with the mouse:" +
+ "<ul><li>Clicking on one of the panes with the <b>Left Mouse Button</b> and dragging will translate the position.</li>" +
"<li>Clicking on one of the panes with the <b>Right Mouse Button</b> and dragging will rotate the position.</li>" +
"<li>Clicking on one of the panes with the <b>Middle Mouse Button</b> and dragging will resize the model."
}
@@ -51,8 +51,6 @@ Rectangle {
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.MiddleButton
onClicked: parent.visible = false
- //onPressed:
- //onReleased:
}
}