diff --git a/Ink Canvas/Resources/Settings.cs b/Ink Canvas/Resources/Settings.cs index 0ceed0c3..040f001a 100644 --- a/Ink Canvas/Resources/Settings.cs +++ b/Ink Canvas/Resources/Settings.cs @@ -1,4 +1,5 @@ using Newtonsoft.Json; +using System.IO; namespace Ink_Canvas { @@ -347,7 +348,7 @@ namespace Ink_Canvas public int MinimumAutomationStrokeNumber { get; set; } = 0; [JsonProperty("autoSavedStrokesLocation")] - public string AutoSavedStrokesLocation = @"D:\Ink Canvas"; + public string AutoSavedStrokesLocation = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "saves"); [JsonProperty("autoDelSavedFiles")] public bool AutoDelSavedFiles = false; @@ -437,4 +438,4 @@ namespace Ink_Canvas [JsonProperty("directCallCiRand")] public bool DirectCallCiRand { get; set; } = false; } -} \ No newline at end of file +}