Put in more copy write notices
Made more window closing happen outside the mouse up event Put in minimalExtrusionBeforeRetraction setting into curaEngine
This commit is contained in:
parent
242927ac48
commit
8571699814
13 changed files with 195 additions and 7 deletions
|
|
@ -104,6 +104,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
new ScaledSingleNumber("retractionAmount", "retract_length", 1000),
|
||||
new MapItem("retractionSpeed", "retract_speed"),
|
||||
new ScaledSingleNumber("retractionMinimalDistance", "retract_before_travel", 1000),
|
||||
new ScaledSingleNumber("minimalExtrusionBeforeRetraction", "min_extrusion_before_retract", 1000),
|
||||
|
||||
new MapItem("spiralizeMode", "spiral_vase"),
|
||||
|
||||
|
|
@ -138,7 +139,6 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
SETTING(supportExtruder);
|
||||
|
||||
SETTING(retractionAmountExtruderSwitch);
|
||||
SETTING(minimalExtrusionBeforeRetraction);
|
||||
SETTING(enableCombing);
|
||||
SETTING(multiVolumeOverlap);
|
||||
SETTING(objectSink);
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
hideItems = new List<string>();
|
||||
hideItems.Add("cool_extruder_lift");
|
||||
hideItems.Add("support_material_create_internal_support");
|
||||
hideItems.Add("min_extrusion_before_retract");
|
||||
}
|
||||
return instance;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue