Update Settings.cs

This commit is contained in:
CJK_mkp
2025-07-12 15:59:09 +08:00
committed by GitHub
parent 6c60306bee
commit 2134ee516a
+3 -2
View File
@@ -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;
}
}
}