feat: PC端忽略启动客户端设置

This commit is contained in:
SherkeyXD
2026-02-19 14:17:04 +08:00
parent f77d85f542
commit e7362d2d35

View File

@@ -46,7 +46,7 @@ public class GameSettingsUserControlModel : PropertyChangedBase
public bool StartGame
{
get => field;
get => SettingsViewModel.ConnectSettings.UseAttachWindow ? false : field;
set {
SetAndNotify(ref field, value);
ConfigurationHelper.SetValue(ConfigurationKeys.StartGame, value.ToString());