mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Add translation for combing
Combing was made into an enum instead of a boolean. Contributes to issue CURA-844.
This commit is contained in:
parent
17f4703337
commit
f7be4831b8
2 changed files with 6 additions and 0 deletions
|
@ -77,6 +77,8 @@ class MachineInstance:
|
|||
for key, value in self._machine_setting_overrides.items():
|
||||
if key == "speed_support_lines": #Setting key was changed for 2.2.
|
||||
key = "speed_support_infill"
|
||||
if key == "retraction_combing": #Combing was made into an enum instead of a boolean.
|
||||
value = "off" if (value == "False") else "all"
|
||||
config.set("machine_settings", key, str(value))
|
||||
|
||||
output = io.StringIO()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue