mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Fix min/max X/Y QML value bindings
CURA-6834
This commit is contained in:
parent
121315cbf2
commit
497648ffe7
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ NumericTextFieldWithUnit
|
|||
// show the correct value.
|
||||
if (!textField.activeFocus && !textField.acceptableInput)
|
||||
{
|
||||
valueText = axisValue
|
||||
valueText = Qt.binding(function() { return machineXMaxField.axisValue })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -94,6 +94,6 @@ NumericTextFieldWithUnit
|
|||
}
|
||||
|
||||
// Recreate the binding to show the correct value.
|
||||
valueText = axisValue
|
||||
valueText = Qt.binding(function() { return axisValue })
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue