From 2134ee516af1af63db8b64aaf49878cdf4bd5be1 Mon Sep 17 00:00:00 2001 From: CJK_mkp <113243675+CJKmkp@users.noreply.github.com> Date: Sat, 12 Jul 2025 15:59:09 +0800 Subject: [PATCH] Update Settings.cs --- Ink Canvas/Resources/Settings.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 +}