summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@theqtcompany.com>2015-01-22 10:09:10 +0100
committerTim Jenssen <tim.jenssen@theqtcompany.com>2015-01-22 10:23:43 +0100
commite421b348bb7b9d9e3bc46d6e927257327b9fd9bb (patch)
tree368d8e1b53dec9b69aa75050ea88ea18d86ef81d
parent83c69fe6e80fd4d9e317ab2f7406e2697db4ed64 (diff)
downloadqt-creator-e421b348bb7b9d9e3bc46d6e927257327b9fd9bb.tar.gz
QmlDesigner.PropertyEditor: Fix minimum value of PathView dragMargin
Change-Id: I597ebdef0797a3184b9480215b85b59797aa59d8 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
index db91eba92e..1a26b97eba 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
@@ -51,7 +51,7 @@ Column {
SecondColumnLayout {
SpinBox {
backendValue: backendValues.dragMargin
- minimumValue: 100;
+ minimumValue: 0;
maximumValue: 100;
decimals: 0
}