feat: improve word wrapping in ChatLine

This commit is contained in:
Stone_Red
2026-02-24 13:53:40 +01:00
parent cf5fca5772
commit 3273e62b37
3 changed files with 70 additions and 37 deletions
+1 -1
View File
@@ -772,7 +772,7 @@ public sealed class MainWindow : Runnable
if (width > 0)
{
foreach (var line in messages)
source.AddRange(line.Wrap(width));
source.AddRange(line.Wrap(width, line.ContinuationIndent));
}
else
{