From fbd671a6bed696bc8e28d2cf4c42fe3d9fd620a9 Mon Sep 17 00:00:00 2001 From: MistEO Date: Sat, 11 Jun 2022 04:08:08 +0800 Subject: [PATCH] =?UTF-8?q?feat.=E5=8B=BE=E9=80=89=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E6=A8=A1=E6=8B=9F=E5=99=A8=E5=90=8E=EF=BC=8C=E8=8B=A5=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=AB=AF=E7=89=88=E6=9C=AC=E6=9C=AA=E9=80=89=E6=8B=A9?= =?UTF-8?q?=EF=BC=8C=E5=88=99=E8=87=AA=E5=8A=A8=E8=AE=BE=E7=BD=AE=E4=B8=BA?= =?UTF-8?q?=E5=AE=98=E6=9C=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/818 --- src/MeoAsstGui/ViewModels/SettingsViewModel.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/MeoAsstGui/ViewModels/SettingsViewModel.cs b/src/MeoAsstGui/ViewModels/SettingsViewModel.cs index badf44eb6f..9ef438abe6 100644 --- a/src/MeoAsstGui/ViewModels/SettingsViewModel.cs +++ b/src/MeoAsstGui/ViewModels/SettingsViewModel.cs @@ -188,6 +188,10 @@ namespace MeoAsstGui { SetAndNotify(ref _startEmulator, value); ViewStatusStorage.Set("Start.StartEmulator", value.ToString()); + if (ClientType == "" && Idle) + { + ClientType = "Official"; + } } }