diff --git a/resources/qml/SpinBox.qml b/resources/qml/SpinBox.qml index 79f9439ad3..29aedf1308 100644 --- a/resources/qml/SpinBox.qml +++ b/resources/qml/SpinBox.qml @@ -115,7 +115,7 @@ Item { var value = spinBox.valueFromText(text); text = spinBox.textFromValue(value); - spinBox.value = value; + base.value = value; } }