aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@qt.io>2023-09-18 13:32:55 +0300
committerMiikka Heikkinen <miikka.heikkinen@qt.io>2023-09-18 13:03:43 +0000
commita6e8a247b3e49cce4e830d839925d3d985b89344 (patch)
tree2634d58a193222558691939634ff40793ef898df
parent6dc42439954549fc29c4685d957d6bf2e06d5ab9 (diff)
QmlDesigner: Fix minimum value for NumberAnimation to and from fields
Change-Id: Ic5fcb1d69ab0c3369dacbc93da71714b20253e25 Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
index 390795ff79..f370391b17 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
@@ -27,7 +27,7 @@ Column {
implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ StudioTheme.Values.actionIndicatorWidth
maximumValue: 9999999
- minimumValue: -1
+ minimumValue: -9999999
backendValue: backendValues.from
}
@@ -44,7 +44,7 @@ Column {
implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ StudioTheme.Values.actionIndicatorWidth
maximumValue: 9999999
- minimumValue: -1
+ minimumValue: -9999999
backendValue: backendValues.to
}