Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2020-07-29 18:19:24 +0300
committerKostas Karmas <konskarm@gmail.com>2020-07-29 18:19:24 +0300
commit52ea3e8fccf12a303ce88dcf8baaeb53f5551424 (patch)
treef35c1488936bcde3f05e3e226d56023b7e967fd7 /plugins/3MFReader/WorkspaceDialog.qml
parent98cc87d1cfd2838edfd2f58f50183ca6425dd293 (diff)
Change variable names (available -> updatable)
CURA-7609
Diffstat (limited to 'plugins/3MFReader/WorkspaceDialog.qml')
-rw-r--r--plugins/3MFReader/WorkspaceDialog.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml
index 647dd0a378..e1b9e7a811 100644
--- a/plugins/3MFReader/WorkspaceDialog.qml
+++ b/plugins/3MFReader/WorkspaceDialog.qml
@@ -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:
{