aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorAleksei German <aleksei.german@qt.io>2020-09-03 17:52:49 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2020-09-03 16:17:52 +0000
commitf849319d118d9d7cfd206e30d9a198a427bc24bb (patch)
tree8a30d68e2b3db0c4d851a49250985f3e33f51455 /share
parentc086c298727f159691b37204876823c36f2ba42e (diff)
QmlDesigner: Disable more properties for QUL
Turned off Controls properties and Animations. Task-number: QDS-943 Change-Id: I4b9868734c74f5319fd7d3e66b57d59007300340 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml
index abf69756fa..b117eeb7f9 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml
@@ -51,11 +51,13 @@ Section {
Label {
text: qsTr("Paused")
tooltip: qsTr("Sets whether the animation is currently paused.")
+ disabledState: !backendValues.paused.isAvailable
}
CheckBox {
text: backendValues.paused.valueToString
backendValue: backendValues.paused
+ enabled: backendValue.isAvailable
}
Label {
text: qsTr("Loops")