From 34b6a11eb670f8a6c6b05614d03ea87e85a3f7fc Mon Sep 17 00:00:00 2001 From: Marcus Sanatan Date: Wed, 7 Jan 2026 18:58:36 -0400 Subject: [PATCH] feat: Mark setup as completed when user clicks Done button (#529) Closes #523 --- MCPForUnity/Editor/Windows/MCPSetupWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MCPForUnity/Editor/Windows/MCPSetupWindow.cs b/MCPForUnity/Editor/Windows/MCPSetupWindow.cs index 8cf5a01..def559d 100644 --- a/MCPForUnity/Editor/Windows/MCPSetupWindow.cs +++ b/MCPForUnity/Editor/Windows/MCPSetupWindow.cs @@ -97,6 +97,7 @@ namespace MCPForUnity.Editor.Windows private void OnDoneClicked() { + Setup.SetupWindowService.MarkSetupCompleted(); Close(); }