From 623c51a19dad7618e5bd6aaf11a44a66cb2b45f2 Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 24 Feb 2026 12:42:39 +0100 Subject: [PATCH] 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. --- src/tuimble/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuimble/app.py b/src/tuimble/app.py index 98a1b8d..f316dd6 100644 --- a/src/tuimble/app.py +++ b/src/tuimble/app.py @@ -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 ----------------------------------------------------------------