mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
fix: Have a space after mentions, making it consistent with @-completion
This commit is contained in:
parent
631121ed23
commit
b18e81ae95
@ -546,7 +546,7 @@ class _ChatState extends State<_Chat> {
|
||||
user: room.getUserByMXIDSync(
|
||||
room.directChatMatrixID),
|
||||
onMention: () => sendController.text +=
|
||||
' ${room.directChatMatrixID}',
|
||||
'${room.directChatMatrixID} ',
|
||||
),
|
||||
)
|
||||
: () => Navigator.of(context).push(
|
||||
@ -776,7 +776,7 @@ class _ChatState extends State<_Chat> {
|
||||
user: event.sender,
|
||||
onMention: () =>
|
||||
sendController.text +=
|
||||
' ${event.senderId}',
|
||||
'${event.senderId} ',
|
||||
),
|
||||
),
|
||||
onSelect: (Event event) {
|
||||
|
Loading…
Reference in New Issue
Block a user