From 3187ef14cfe82db09516d85b3cde273aa6c866fc Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 7 Jul 2023 15:05:52 +0200 Subject: [PATCH] SpinBox fixed for values above the max value Review comments Fixes CURA-10096 --- resources/qml/SpinBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }