Improving simple mode
This commit is contained in:
parent
11d6b659fb
commit
51d1e33f9d
9 changed files with 112 additions and 68 deletions
|
|
@ -76,11 +76,19 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
|
||||
public Func<int, string> PerToolName { get; set; } = null;
|
||||
|
||||
public bool ReloadUiWhenChanged { get; set; } = false;
|
||||
public enum UiUpdateRequired { None, SliceSettings, Application };
|
||||
|
||||
public UiUpdateRequired UiUpdate { get; set; } = UiUpdateRequired.None;
|
||||
|
||||
public SettingsLayout.Group OrganizerGroup { get; set; }
|
||||
|
||||
public ValueConverter Converter { get; set; }
|
||||
public bool IncludeInSimple { get; internal set; }
|
||||
|
||||
/// <summary>
|
||||
/// The display minimum display detail that must be set for this setting to be visible
|
||||
/// </summary>
|
||||
public enum DisplayDetailRequired { Simple, Moderate, Advance }
|
||||
|
||||
public DisplayDetailRequired ReqiredDisplayDetail { get; internal set; } = DisplayDetailRequired.Moderate;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue