fix(wpf): 自动战斗界面Idle setter限制

This commit is contained in:
status102
2025-08-26 23:25:57 +08:00
parent 7ea22b6b03
commit 302b082e21

View File

@@ -154,12 +154,12 @@ namespace MaaWpfGui.ViewModels.UI
private bool _idle;
/// <summary>
/// Gets or sets a value indicating whether it is idle.
/// Gets a value indicating whether it is idle.
/// </summary>
public bool Idle
{
get => _idle;
set => SetAndNotify(ref _idle, value);
private set => SetAndNotify(ref _idle, value);
}
private bool _startEnabled = true;