Skip to content

Commit

Permalink
add missing history property to config
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jun 10, 2024
1 parent d0cba3e commit 9fdc704
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dalamud/Configuration/Internal/DalamudConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 9fdc704

Please sign in to comment.