fix: Debug TaskName 忘保存了

This commit is contained in:
uye
2025-04-07 17:29:45 +08:00
parent ae7784144e
commit 9b5c8bbf75

View File

@@ -30,6 +30,10 @@ public class CustomSettingsUserControlModel : TaskViewModel
public string TaskName
{
get => _taskName;
set => SetAndNotify(ref _taskName, value);
set
{
SetAndNotify(ref _taskName, value);
ConfigurationHelper.SetGlobalValue(ConfigurationKeys.DebugTaskName, value);
}
}
}