mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
ConsoleWindow Copy Timestamp Fix (#1470)
This commit is contained in:
parent
9fe5ca3214
commit
c8906c674f
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue