From 67e40739db3968756648675bcf4fa7f558b5a294 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 26 Aug 2024 18:20:26 +0300 Subject: [PATCH] fix - Fixed text editor looking messed up --- The text editor should show the contents properly. --- Type: fix Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs b/Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs index 12c452a8..8f01f18e 100644 --- a/Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs +++ b/Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs @@ -248,7 +248,7 @@ private static void RenderContentsWithSelection(int lineIdx, ref Screen screen, endLineIndex = absolutes.Length; source = ""; for (int a = startLineIndex; a < endLineIndex; a++) - source += absolutes[a]; + source += absolutes[a].Item2; } lineBuilder.Append(source);