add missing history property to config

This commit is contained in:
goat 2024-06-10 21:23:25 +02:00
parent d0cba3eca8
commit 9fdc704834

View file

@ -228,6 +228,11 @@ internal sealed class DalamudConfiguration : IInternalDisposableService
/// </summary>
public int LogLinesLimit { get; set; } = 10000;
/// <summary>
/// Gets or sets a list of commands that have been run in the console window.
/// </summary>
public List<string> LogCommandHistory { get; set; } = new();
/// <summary>
/// Gets or sets a value indicating whether or not the dev bar should open at startup.
/// </summary>