fix incorrectly ellipsised messages

This commit is contained in:
Henry Hiles 2026-05-20 10:20:17 -04:00
commit ffdcc89de0
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -252,7 +252,9 @@ class EventRenderer extends ConsumerWidget {
style: textStyle, style: textStyle,
text: body, text: body,
maxLines: maxLines, maxLines: maxLines,
overflow: TextOverflow.ellipsis, overflow: maxLines == null
? null
: TextOverflow.ellipsis,
options: LinkifyOptions( options: LinkifyOptions(
humanize: false, humanize: false,
), ),