mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Correct syntax error that prevented checkbox showing up
This commit is contained in:
parent
5813aa2f57
commit
322e4ac904
1 changed files with 10 additions and 9 deletions
|
@ -330,24 +330,25 @@ Item
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
- Proposed fix for this issue: https://github.com/Ultimaker/Cura/issues/9167
|
- Proposed fix for this issue: https://github.com/Ultimaker/Cura/issues/9167
|
||||||
- Allows user to toggle if GCODE coordinates are affected by the extruder offset.
|
- Allows user to toggle if GCODE coordinates are affected by the extruder offset.
|
||||||
- Machine wide setting. CuraEngine/src/gcodeExport.cpp is not set up to evaluate per extruder currently.
|
- Machine wide setting. CuraEngine/src/gcodeExport.cpp is not set up to evaluate per extruder currently.
|
||||||
- If it is moved to per-extruder (unlikely), then this should be moved to the extruder tab)
|
- If it is moved to per-extruder (unlikely), then this should be moved to the extruder tab)
|
||||||
*/
|
*/
|
||||||
Cura.SimpleCheckBox // "GCode Affected By Extruder Offsets"
|
Cura.SimpleCheckBox // "GCode Affected By Extruder Offsets"
|
||||||
{
|
{
|
||||||
id: ApplyExtruderOffsetsToGCodeCheckbox
|
id: applyExtruderOffsetsCheckbox
|
||||||
containerStackId: machineStackId
|
containerStackId: machineStackId
|
||||||
settingKey: "machine_use_extruder_offset_to_offset_coords"
|
settingKey: "machine_use_extruder_offset_to_offset_coords"
|
||||||
settingStoreIndex: propertyStoreIndex
|
settingStoreIndex: propertyStoreIndex
|
||||||
labelText: catalog.i18nc("@label", "Apply Extruder offsets to GCode")
|
labelText: catalog.i18nc("@label", "Apply Extruder offsets to GCode")
|
||||||
labelFont: base.labelFont
|
labelFont: base.labelFont
|
||||||
labelWidth: base.labelWidth
|
labelWidth: base.labelWidth
|
||||||
forceUpdateOnChangeFunction: forceUpdateFunction
|
forceUpdateOnChangeFunction: forceUpdateFunction
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* The "Shared Heater" feature is temporarily disabled because its
|
/* The "Shared Heater" feature is temporarily disabled because its
|
||||||
implementation is incomplete. Printers with multiple filaments going
|
implementation is incomplete. Printers with multiple filaments going
|
||||||
into one nozzle will keep the inactive filaments retracted at the
|
into one nozzle will keep the inactive filaments retracted at the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue