Make sure we show clear_bed_gcode settings

This commit is contained in:
Lars Brubaker 2021-02-03 14:42:52 -08:00
parent f119eb7d18
commit df6bcbfb0f
3 changed files with 4 additions and 4 deletions

View file

@ -104,6 +104,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
SettingsKey.before_toolchange_gcode_3,
SettingsKey.build_height,
SettingsKey.cancel_gcode,
SettingsKey.clear_bed_gcode,
SettingsKey.com_port,
SettingsKey.connect_gcode,
SettingsKey.create_brim,

View file

@ -406,10 +406,11 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
SlicerConfigName = SettingsKey.clear_bed_gcode,
PresentationName = "Clear Bed G-Code".Localize(),
HelpText = "G-Code the Auto Pilot Pro Tool will run to clear the bed after a print completes. This is only useful on a printer designed to clear the bed.".Localize(),
RequiredDisplayDetail = DisplayDetailRequired.Simple,
HelpText = "G-Code used by Auto Pilot to clear the bed after a print completes. This is only useful on a printer designed to clear the bed.".Localize(),
RequiredDisplayDetail = DisplayDetailRequired.Advanced,
DataEditType = DataEditTypes.MULTI_LINE_TEXT,
DefaultValue = "",
RebuildGCodeOnChange = false,
Converter = new GCodeMapping(),
},
new SliceSettingData()

View file

@ -38,9 +38,7 @@ using MatterHackers.Agg.Image;
using MatterHackers.Agg.UI;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.MatterControl.PartPreviewWindow;
using MatterHackers.MatterControl.PrintLibrary;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl
{