ConsoleWindow Copy Timestamp Fix (#1470)

This commit is contained in:
MidoriKami 2023-10-07 16:29:12 -07:00 committed by GitHub
parent 9fe5ca3214
commit c8906c674f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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));
}