mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Change variable names (available -> updatable)
CURA-7609
This commit is contained in:
parent
98cc87d1cf
commit
52ea3e8fcc
3 changed files with 27 additions and 31 deletions
|
|
@ -105,7 +105,7 @@ UM.Dialog
|
|||
id: machineResolveStrategyTooltip
|
||||
width: (parent.width / 3) | 0
|
||||
height: visible ? comboboxHeight : 0
|
||||
visible: manager.availableMachinesCount != 0
|
||||
visible: manager.updatableMachinesCount != 0
|
||||
text: catalog.i18nc("@info:tooltip", "How should the conflict in the machine be resolved?")
|
||||
ComboBox
|
||||
{
|
||||
|
|
@ -163,12 +163,12 @@ UM.Dialog
|
|||
id: machineResolveTooltip
|
||||
width: (parent.width / 3) | 0
|
||||
height: visible ? comboboxHeight : 0
|
||||
visible: base.visible && manager.availableMachinesCount != 0 && machineResolveStrategyCurrentKey == "override"
|
||||
visible: base.visible && manager.updatableMachinesCount != 0 && machineResolveStrategyCurrentKey == "override"
|
||||
text: catalog.i18nc("@info:tooltip", "Which machine of the same type should be overriden?")
|
||||
ComboBox
|
||||
{
|
||||
id: selectMachineComboBox
|
||||
model: manager.availableMachines
|
||||
model: manager.updatableMachines
|
||||
width: parent.width
|
||||
onCurrentIndexChanged:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue