From 40f5b985014d2f350b2587b626999bd6bef2b8de Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 16 May 2020 09:10:10 +0200 Subject: [PATCH] Fix softwrap --- lib/components/list_items/chat_list_item.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/list_items/chat_list_item.dart b/lib/components/list_items/chat_list_item.dart index 0218e38..5e340c0 100644 --- a/lib/components/list_items/chat_list_item.dart +++ b/lib/components/list_items/chat_list_item.dart @@ -150,7 +150,7 @@ class ChatListItem extends StatelessWidget { child: Text( room.getLocalizedDisplayname(L10n.of(context)), maxLines: 1, - overflow: TextOverflow.ellipsis, + overflow: TextOverflow.fade, softWrap: false, ), ), @@ -191,7 +191,7 @@ class ChatListItem extends StatelessWidget { ), softWrap: false, maxLines: 1, - overflow: TextOverflow.ellipsis, + overflow: TextOverflow.fade, style: TextStyle( decoration: room.lastEvent.redacted ? TextDecoration.lineThrough