aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2019-09-02 17:33:23 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2019-09-03 09:12:29 +0000
commit428d8f03079a531c45cc3dfb79b58e307aa12ffd (patch)
tree96a602a081f4fb46d5fa95e3b146ca5acfede9b3 /share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
parent489c9b2e58de5d819302d73bf8d28abd65f251be (diff)
QmlDesigner: PropertyEditor cleanup
* Adapt SpinBox ranges and decimals * Add missing qsTr() to labels Change-Id: If85999a22778b6f61e30f7437905354884086596 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
index 0f2cb21b306..6b0b0de8355 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
@@ -158,8 +158,8 @@ Section {
}
SecondColumnLayout {
SpinBox {
- maximumValue: 9999999
- minimumValue: -9999999
+ minimumValue: -4000
+ maximumValue: 4000
decimals: 0
backendValue: backendValues.spacing
Layout.fillWidth: true