From c8906c674fd7291b76eb4de43c68d505187ac60a Mon Sep 17 00:00:00 2001 From: MidoriKami <9083275+MidoriKami@users.noreply.github.com> Date: Sat, 7 Oct 2023 16:29:12 -0700 Subject: [PATCH] ConsoleWindow Copy Timestamp Fix (#1470) --- Dalamud/Interface/Internal/Windows/ConsoleWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs index 6bb8ea25e..595b09fef 100644 --- a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs @@ -322,7 +322,7 @@ internal class ConsoleWindow : Window, IDisposable { var allSelectedLines = this.FilteredLogEntries .Where(entry => entry.SelectedForCopy) - .Select(entry => $"{line.TimeStamp:HH:mm:ss.fff} {this.GetTextForLogEventLevel(entry.Level)} | {entry.Line}"); + .Select(entry => $"{entry.TimeStamp:HH:mm:ss.fff} {this.GetTextForLogEventLevel(entry.Level)} | {entry.Line}"); ImGui.SetClipboardText(string.Join("\n", allSelectedLines)); }