mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 10:00:44 +08:00
chore: 调整 MaxNumberOfLogThumbnails 作用域,调整默认数量
This commit is contained in:
@@ -274,14 +274,14 @@ public class GuiSettingsUserControlModel : PropertyChangedBase
|
||||
}
|
||||
}
|
||||
|
||||
private int _maxNumberOfLogThumbnails = ConfigurationHelper.GetGlobalValue(ConfigurationKeys.MaxNumberOfLogThumbnails, 20);
|
||||
private int _maxNumberOfLogThumbnails = ConfigurationHelper.GetValue(ConfigurationKeys.MaxNumberOfLogThumbnails, 100);
|
||||
|
||||
public int MaxNumberOfLogThumbnails
|
||||
{
|
||||
get => _maxNumberOfLogThumbnails;
|
||||
set {
|
||||
SetAndNotify(ref _maxNumberOfLogThumbnails, value);
|
||||
ConfigurationHelper.SetGlobalValue(ConfigurationKeys.MaxNumberOfLogThumbnails, value.ToString());
|
||||
ConfigurationHelper.SetValue(ConfigurationKeys.MaxNumberOfLogThumbnails, value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user