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:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-10-23 11:25:13 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-10-23 11:25:13 +0300
commit94ef0b92fe8642ef3b4f4e795340a82b0b205f26 (patch)
treef45d2f92c4fd3511d29b0840ede4f21cb23ab565 /plugins/MachineSettingsAction
parentea9aa2c7773899b37f582b160aea4de51b81243a (diff)
Fix typo in the getCompatibleMaterialDiameter function.
Contributes to CURA-5834.
Diffstat (limited to 'plugins/MachineSettingsAction')
-rw-r--r--plugins/MachineSettingsAction/MachineSettingsAction.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/MachineSettingsAction/MachineSettingsAction.qml b/plugins/MachineSettingsAction/MachineSettingsAction.qml
index be2b1d337a..5109aa05cb 100644
--- a/plugins/MachineSettingsAction/MachineSettingsAction.qml
+++ b/plugins/MachineSettingsAction/MachineSettingsAction.qml
@@ -410,7 +410,7 @@ Cura.MachineAction
}
function setValueFunction(value)
{
- Cura.MachineManager.activeStack.compatibleMaterialDiameter = value;
+ Cura.MachineManager.activeStack.compatibleMaterialDiameter = value
}
property bool isExtruderSetting: true
}
@@ -634,19 +634,19 @@ Cura.MachineAction
// are available.
if (_setValueFunction !== undefined)
{
- _setValueFunction(text);
+ _setValueFunction(text)
}
else
{
- propertyProvider.setPropertyValue("value", text);
+ propertyProvider.setPropertyValue("value", text)
}
if(_forceUpdateOnChange)
{
- manager.forceUpdate();
+ manager.forceUpdate()
}
if(_afterOnEditingFinished)
{
- _afterOnEditingFinished();
+ _afterOnEditingFinished()
}
}
}