From 8bf674e510cbeb8adaa40b925665de836bd922c2 Mon Sep 17 00:00:00 2001 From: boxqkrtm <9902abcd@gmail.com> Date: Sun, 2 Nov 2025 14:32:38 +0900 Subject: [PATCH] fix: change default value of ReuseExistingWindowKey to false --- Editor/VisualStudioCursorInstallation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/VisualStudioCursorInstallation.cs b/Editor/VisualStudioCursorInstallation.cs index 3c230d7..e27f87c 100644 --- a/Editor/VisualStudioCursorInstallation.cs +++ b/Editor/VisualStudioCursorInstallation.cs @@ -587,7 +587,7 @@ namespace Microsoft.Unity.VisualStudio.Editor workspace ??= directory; directory = workspace; - if (EditorPrefs.GetBool(ReuseExistingWindowKey, true)) + if (EditorPrefs.GetBool(ReuseExistingWindowKey, false)) { var existingProcess = FindRunningCursorWithSolution(directory); if (existingProcess != null)