Skip to content

Commit

Permalink
fix - Fixed text editor looking messed up
Browse files Browse the repository at this point in the history
---

The text editor should show the contents properly.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Aug 26, 2024
1 parent 7773be1 commit 67e4073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Terminaux/Inputs/Styles/Editor/TextEditInteractive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 67e4073

Please sign in to comment.