SpinBox fixed for values above the max value

Review comments
Fixes CURA-10096
This commit is contained in:
saumya.jain 2023-07-07 15:05:52 +02:00
parent 83bef10cfb
commit 3187ef14cf

View File

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