Padding needed for messages as well

This commit is contained in:
Kovid Goyal 2025-09-05 21:43:47 +05:30
parent 9936c302d2
commit c08e37168b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -136,7 +136,7 @@ class ChatWidget(QWidget):
html = f'<div style="{style}">{msg_html}</div>'
if details:
html += f"<pre>{_('Details:')}\n{escape(details)}</pre>"
self.current_message = html
self.current_message = f'<table width="100%" cellpadding="2"><tr><td>{html}</td></tr></table>'
self.re_render()
def clear(self) -> None: