aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/particles/affectors/wander.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/particles/affectors/wander.qml')
-rw-r--r--examples/quick/particles/affectors/wander.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quick/particles/affectors/wander.qml b/examples/quick/particles/affectors/wander.qml
index e93bfe200c..c4c2914d49 100644
--- a/examples/quick/particles/affectors/wander.qml
+++ b/examples/quick/particles/affectors/wander.qml
@@ -45,15 +45,15 @@ Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
spacing: 4
GreyButton {
- text:"dx/dt"
+ text: qsTr("dx/dt")
onClicked: wanderer.affectedParameter = Wander.Position;
}
GreyButton {
- text:"dv/dt"
+ text: qsTr("dv/dt")
onClicked: wanderer.affectedParameter = Wander.Velocity;
}
GreyButton {
- text:"da/dt"
+ text: qsTr("da/dt")
onClicked: wanderer.affectedParameter = Wander.Acceleration;
}
}