From 3b71f47560b5dfc55e3ea4e662245028ddf63b7e Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Wed, 24 Mar 2010 17:25:24 +0100 Subject: [PATCH] QmlDesigner.propertyEditor: fix bug in qml --- share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml index 14ebc241b04..ac655792175 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml @@ -66,7 +66,7 @@ QWidget { //This is a special spinBox that does color coding for states QSpinBox { property alias backendValue: spinBox.backendValue - enabled: !backendValue.isBound && doubleSpinBox.enabled; + enabled: !backendValue.isBound && spinBox.enabled; keyboardTracking: false; id: box; -- GitLab