Improve description of offsets

This commit is contained in:
Lars Brubaker 2021-03-02 17:50:57 -08:00
parent 32e9ba56a2
commit bca3a4ec0c
2 changed files with 4 additions and 4 deletions

View file

@ -2273,7 +2273,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
SlicerConfigName = SettingsKey.sla_printable_area_inset,
PresentationName = "Printable Area Inset".Localize(),
HelpText = "The inset amount from the edges of the bed. Defines the printable area of the bed. Leave as 0s if the entire bed can be printed to.".Localize(),
HelpText = "The inset amount from the edges of the bed. Defines the printable area of the bed. Leave as 0s if the entire bed can be printed to (Left, Front, Right, Back).".Localize(),
DataEditType = DataEditTypes.BOUNDS,
RequiredDisplayDetail = DisplayDetailRequired.Advanced,
DefaultValue = ""
@ -2282,7 +2282,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
SlicerConfigName = SettingsKey.t0_inset,
PresentationName = "Nozzle 1 Inset".Localize(),
HelpText = "The inset amount for nozzle 1 from the bed".Localize(),
HelpText = "The inset amount for nozzle 1 from the bed (Left, Front, Right, Back).".Localize(),
DataEditType = DataEditTypes.BOUNDS,
RequiredDisplayDetail = DisplayDetailRequired.Advanced,
ShowIfSet = "extruder_count>1",
@ -2292,7 +2292,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
SlicerConfigName = SettingsKey.t1_inset,
PresentationName = "Nozzle 2 Inset".Localize(),
HelpText = "The inset amount for nozzle 2 from the bed".Localize(),
HelpText = "The inset amount for nozzle 2 from the bed (Left, Front, Right, Back).".Localize(),
DataEditType = DataEditTypes.BOUNDS,
RequiredDisplayDetail = DisplayDetailRequired.Advanced,
ShowIfSet = "extruder_count>1",

View file

@ -34,7 +34,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
public BoundsField(ThemeConfig theme)
: base (theme)
{
Labels = new[] { 'L', 'B', 'R', 'T' };
Labels = new[] { 'L', 'F', 'R', 'B' };
}
}
}