summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Authoring/Qt3DStudio/Palettes/Inspector/InspectorControlView.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Authoring/Qt3DStudio/Palettes/Inspector/InspectorControlView.qml b/src/Authoring/Qt3DStudio/Palettes/Inspector/InspectorControlView.qml
index 7e7af556..d6e89ba3 100644
--- a/src/Authoring/Qt3DStudio/Palettes/Inspector/InspectorControlView.qml
+++ b/src/Authoring/Qt3DStudio/Palettes/Inspector/InspectorControlView.qml
@@ -334,7 +334,9 @@ Rectangle {
}
}
StyledTooltip {
- text: qsTr("Enable animation")
+ text: model.modelData.animated
+ ? qsTr("Disable animation")
+ : qsTr("Enable animation")
enabled: animateButtonMouseArea.containsMouse
}
}