diff --git a/octgnFX/Octgn.Core/Prefs.cs b/octgnFX/Octgn.Core/Prefs.cs index 8117dfec3..15bc3d1df 100644 --- a/octgnFX/Octgn.Core/Prefs.cs +++ b/octgnFX/Octgn.Core/Prefs.cs @@ -648,5 +648,10 @@ public static string DeviceId { get { return Config.Instance.ReadValue(nameof(DeviceId), Guid.NewGuid().ToString()); } set { Config.Instance.WriteValue(nameof(DeviceId), value); } } + public static bool ShowAltsInDeckEditor + { + get { return Config.Instance.ReadValue("ShowAltsInDeckEditor", false); } + set { Config.Instance.WriteValue("ShowAltsInDeckEditor", value); } + } } } \ No newline at end of file diff --git a/octgnFX/Octgn.JodsEngine/DeckBuilder/SearchControl.xaml b/octgnFX/Octgn.JodsEngine/DeckBuilder/SearchControl.xaml index 8c70a3629..ce84a2ae8 100644 --- a/octgnFX/Octgn.JodsEngine/DeckBuilder/SearchControl.xaml +++ b/octgnFX/Octgn.JodsEngine/DeckBuilder/SearchControl.xaml @@ -73,8 +73,8 @@