Fix linux path

This commit is contained in:
Dalton
2025-05-10 11:56:31 +08:00
parent 0a7001698c
commit 334a52e789

View File

@@ -130,7 +130,7 @@ namespace Microsoft.Unity.VisualStudio.Editor
#if UNITY_EDITOR_OSX
cursorStoragePath = Path.Combine(userProfile, "Library", "Application Support", "cursor", "User", "workspaceStorage");
#elif UNITY_EDITOR_LINUX
cursorStoragePath = Path.Combine(userProfile, ".config", "cursor", "User", "workspaceStorage");
cursorStoragePath = Path.Combine(userProfile, ".config", "Cursor", "User", "workspaceStorage");
#else
cursorStoragePath = Path.Combine(userProfile, "AppData", "Roaming", "cursor", "User", "workspaceStorage");
#endif