Fix softwrap
This commit is contained in:
parent
22597dd0cf
commit
40f5b98501
|
@ -150,7 +150,7 @@ class ChatListItem extends StatelessWidget {
|
||||||
child: Text(
|
child: Text(
|
||||||
room.getLocalizedDisplayname(L10n.of(context)),
|
room.getLocalizedDisplayname(L10n.of(context)),
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.fade,
|
||||||
softWrap: false,
|
softWrap: false,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -191,7 +191,7 @@ class ChatListItem extends StatelessWidget {
|
||||||
),
|
),
|
||||||
softWrap: false,
|
softWrap: false,
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.fade,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
decoration: room.lastEvent.redacted
|
decoration: room.lastEvent.redacted
|
||||||
? TextDecoration.lineThrough
|
? TextDecoration.lineThrough
|
||||||
|
|
Loading…
Reference in a new issue