fix: enable word wrap in chat log

RichLog defaults wrap=False, causing long messages to extend
beyond the visible area instead of wrapping at the widget edge.
This commit is contained in:
Username
2026-02-24 12:42:39 +01:00
parent 227d415c24
commit 623c51a19d

View File

@@ -187,7 +187,7 @@ class ChatLog(RichLog):
"""Message log."""
def __init__(self, **kwargs) -> None:
super().__init__(markup=True, **kwargs)
super().__init__(markup=True, wrap=True, **kwargs)
# -- main app ----------------------------------------------------------------