From 72a65fe2f59fecc2b25bedc1fadc428c6cd8a3ff Mon Sep 17 00:00:00 2001 From: yali-hzy <48376189+yali-hzy@users.noreply.github.com> Date: Wed, 4 Feb 2026 23:06:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=9D=E5=A7=8B=E5=8C=96=20StartEnabl?= =?UTF-8?q?ed=20=E5=B1=9E=E6=80=A7=E4=B8=BA=20true=20(#15596)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit link to 2ee039c8bd76f5f43579980207281d8d0b6fb554 --- src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs b/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs index 70dbdc1ba9..fc377b87e8 100644 --- a/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs +++ b/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs @@ -220,7 +220,7 @@ public partial class CopilotViewModel : Screen /// /// Gets or sets a value indicating whether the start button is enabled. /// - public bool StartEnabled { get => field; set => SetAndNotify(ref field, value); } + public bool StartEnabled { get => field; set => SetAndNotify(ref field, value); } = true; private int _copilotTabIndex = 0;