summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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:
}
}