mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-16 20:47:43 +01:00
.
This commit is contained in:
parent
63e82d19dc
commit
e57538561f
34 changed files with 2428 additions and 720 deletions
|
|
@ -21,6 +21,7 @@ public class Configuration : IPluginConfiguration, ISavable
|
|||
public bool UseRestrictedGearProtection { get; set; } = true;
|
||||
public bool OpenFoldersByDefault { get; set; } = false;
|
||||
public bool AutoRedrawEquipOnChanges { get; set; } = false;
|
||||
public bool EnableAutoDesigns { get; set; } = true;
|
||||
public MainWindow.TabType SelectedTab { get; set; } = MainWindow.TabType.Settings;
|
||||
public DoubleModifier DeleteDesignModifier { get; set; } = new(ModifierHotkey.Control, ModifierHotkey.Shift);
|
||||
|
||||
|
|
@ -28,11 +29,13 @@ public class Configuration : IPluginConfiguration, ISavable
|
|||
[JsonProperty(Order = int.MaxValue)]
|
||||
public ISortMode<Design> SortMode { get; set; } = ISortMode<Design>.FoldersFirst;
|
||||
|
||||
public string Phrasing1 { get; set; } = string.Empty;
|
||||
public string Phrasing2 { get; set; } = string.Empty;
|
||||
|
||||
#if DEBUG
|
||||
public bool DebugMode { get; set; } = true;
|
||||
#else
|
||||
public bool DebugMode { get; set; } = false;
|
||||
public bool DebugMode { get; set; } = false;
|
||||
#endif
|
||||
|
||||
public int Version { get; set; } = Constants.CurrentVersion;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue