mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 11:14:21 +08:00
Merge branch 'master' of https://github.com/RFBomb/Cura
This commit is contained in:
commit
b30bacc9f8
@ -330,6 +330,25 @@ Item
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
- Fix for this issue: https://github.com/Ultimaker/Cura/issues/9167
|
||||||
|
- 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.
|
||||||
|
- If it is moved to per-extruder (unlikely), then this should be moved to the extruder tab.
|
||||||
|
*/
|
||||||
|
Cura.SimpleCheckBox // "GCode Affected By Extruder Offsets"
|
||||||
|
{
|
||||||
|
id: applyExtruderOffsetsCheckbox
|
||||||
|
containerStackId: machineStackId
|
||||||
|
settingKey: "machine_use_extruder_offset_to_offset_coords"
|
||||||
|
settingStoreIndex: propertyStoreIndex
|
||||||
|
labelText: catalog.i18nc("@label", "Apply Extruder offsets to GCode")
|
||||||
|
labelFont: base.labelFont
|
||||||
|
labelWidth: base.labelWidth
|
||||||
|
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
|
||||||
|
@ -485,7 +485,7 @@
|
|||||||
"machine_use_extruder_offset_to_offset_coords":
|
"machine_use_extruder_offset_to_offset_coords":
|
||||||
{
|
{
|
||||||
"label": "Offset with Extruder",
|
"label": "Offset with Extruder",
|
||||||
"description": "Apply the extruder offset to the coordinate system.",
|
"description": "Apply the extruder offset to the coordinate system. Affects all extruders.",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"default_value": true,
|
"default_value": true,
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user