From 7545fa3452becdf0fd4eca75bbec917af2475459 Mon Sep 17 00:00:00 2001 From: Caraxi Date: Sun, 5 Feb 2023 20:47:36 +1030 Subject: [PATCH] Remove `---------------------` when copying from log window --- 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 d2d51b8d6..8c754e006 100644 --- a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs @@ -301,7 +301,7 @@ internal class ConsoleWindow : Window, IDisposable { var line = this.LogEntries[i]; - if (!line.IsMultiline) + if (!line.IsMultiline && !copy) ImGui.Separator(); ImGui.PushStyleColor(ImGuiCol.Header, this.GetColorForLogEventLevel(line.Level));