aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2014-09-11 10:22:11 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2014-09-11 11:15:54 +0200
commita9f6f2519bcd1651e7e6f5dc3cdd64fa5f3c7aab (patch)
treeea91cf0cd31ce5c92d71bd95550af8eb0722281e /share
parent17c313756b25df0648ff2b6b925f807c845a566d (diff)
QmlDesigner: Allow negative spacings for positioners
Change-Id: I610127421b071a4bf4ed0d21aeab2b2f0c089d28 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml4
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml4
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml4
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml4
4 files changed, 8 insertions, 8 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
index e3f5a33db3..c79cea1c56 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
@@ -47,8 +47,8 @@ Column {
SecondColumnLayout {
SpinBox {
backendValue: backendValues.spacing
- minimumValue: 0
- maximumValue: 2000
+ minimumValue: -4000
+ maximumValue: 4000
decimals: 0
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
index 08fb6e40aa..8e4d6d2078 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
@@ -78,8 +78,8 @@ Column {
SecondColumnLayout {
SpinBox {
backendValue: backendValues.spacing
- minimumValue: 0
- maximumValue: 2000
+ minimumValue: -4000
+ maximumValue: 4000
decimals: 0
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
index 793bee9010..17c6e5cff0 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
@@ -109,8 +109,8 @@ Column {
SecondColumnLayout {
SpinBox {
backendValue: backendValues.spacing
- minimumValue: 0
- maximumValue: 2000
+ minimumValue: -4000
+ maximumValue: 4000
decimals: 0
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml
index 81b4a93202..1676d200f4 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml
@@ -61,8 +61,8 @@ Column {
SecondColumnLayout {
SpinBox {
backendValue: backendValues.spacing
- minimumValue: 0
- maximumValue: 2000
+ minimumValue: -4000
+ maximumValue: 4000
decimals: 0
}