mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
fix: 连战次数无法保存
This commit is contained in:
@@ -455,7 +455,7 @@ public class FightSettingsUserControlModel : TaskViewModel
|
||||
get => _maxTimes;
|
||||
set
|
||||
{
|
||||
if (SetAndNotify(ref _maxTimes, value))
|
||||
if (!SetAndNotify(ref _maxTimes, value))
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -475,7 +475,7 @@ public class FightSettingsUserControlModel : TaskViewModel
|
||||
get => _series;
|
||||
set
|
||||
{
|
||||
if (SetAndNotify(ref _series, value))
|
||||
if (!SetAndNotify(ref _series, value))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user