diff --git a/Dalamud/Interface/Windowing/WindowSystem.cs b/Dalamud/Interface/Windowing/WindowSystem.cs index 61575f9db..0e3e2d5eb 100644 --- a/Dalamud/Interface/Windowing/WindowSystem.cs +++ b/Dalamud/Interface/Windowing/WindowSystem.cs @@ -16,7 +16,6 @@ namespace Dalamud.Interface.Windowing private static DateTimeOffset lastAnyFocus; private readonly List windows = new(); - public IReadOnlyList Windows => this.windows; private string lastFocusedWindowName = string.Empty; @@ -45,6 +44,11 @@ namespace Dalamud.Interface.Windowing /// public static TimeSpan TimeSinceLastAnyFocus => DateTimeOffset.Now - lastAnyFocus; + /// + /// Gets a read-only list of all s in this . + /// + public IReadOnlyList Windows => this.windows; + /// /// Gets a value indicating whether any window in this has focus and is /// not marked to be excluded from consideration. @@ -88,7 +92,7 @@ namespace Dalamud.Interface.Windowing /// /// Get a window by name. /// - /// The name of the + /// The name of the . /// The object with matching name or null. public Window? GetWindow(string windowName) => this.windows.FirstOrDefault(w => w.WindowName == windowName);