mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Replace SpinBox
with NumericTextFieldWithUnit
CURA-9146
This commit is contained in:
parent
4bb72cdd1a
commit
cb4f1a8ab5
1 changed files with 5 additions and 6 deletions
|
@ -574,11 +574,11 @@ Item
|
|||
elide: Text.ElideRight
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
}
|
||||
Cura.SpinBox
|
||||
Cura.NumericTextFieldWithUnit
|
||||
{
|
||||
id: spinBox
|
||||
anchors.left: label.right
|
||||
value:
|
||||
valueText:
|
||||
{
|
||||
// In case the setting is not in the material...
|
||||
if (!isNaN(parseFloat(materialPropertyProvider.properties.value)))
|
||||
|
@ -598,12 +598,11 @@ Item
|
|||
return 0;
|
||||
}
|
||||
width: settingsPage.columnWidth
|
||||
suffix: " " + model.unit
|
||||
to: 99999
|
||||
maximum: 99999
|
||||
unitText: model.unit
|
||||
decimals: model.unit == "mm" ? 2 : 0
|
||||
stepSize: Math.pow(10, -decimals)
|
||||
|
||||
onEditingFinished: materialPropertyProvider.setPropertyValue("value", value)
|
||||
editingFinishedFunction: materialPropertyProvider.setPropertyValue("value", value)
|
||||
}
|
||||
|
||||
UM.ContainerPropertyProvider
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue