Browse Source

SpinBox fixed for values above the max value
Review comments
Fixes CURA-10096

saumya.jain 1 year ago
parent
commit
3187ef14cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/SpinBox.qml

+ 1 - 1
resources/qml/SpinBox.qml

@@ -115,7 +115,7 @@ Item
             {
                 var value = spinBox.valueFromText(text);
                 text = spinBox.textFromValue(value);
-                spinBox.value = value;
+                base.value = value;
             }
         }