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-08-10 15:58:59 +0300
committerKostas Karmas <konskarm@gmail.com>2020-08-10 15:58:59 +0300
commit61cc8c9a95ba78e660b045035dcf18fbfb945dd5 (patch)
treea60a612ad9408948d4526a457a552d841689bba1 /plugins/3MFReader
parentb9d5f0dc152cdf2e6548e72c0c4dd46d250b008b (diff)
Remove reference to JIRA ticket in comments
CURA-7646
Diffstat (limited to 'plugins/3MFReader')
-rwxr-xr-xplugins/3MFReader/ThreeMFWorkspaceReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py
index 54a0b17bda..49173d4864 100755
--- a/plugins/3MFReader/ThreeMFWorkspaceReader.py
+++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py
@@ -666,7 +666,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
# Printers with modifiable number of extruders (such as CFFF) will specify a machine_extruder_count in their
# quality_changes file. If that's the case, take the extruder count into account when creating the machine
# or else the extruderList will return only the first extruder, leading to missing non-global settings in
- # the other extruders. See CURA-7646
+ # the other extruders.
machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
if global_stack: # Only switch if creating the machine was successful.