From 1a8a5c6187bc667f105df701087ae7a9d836ee88 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Tue, 3 Mar 2026 17:08:42 +0100 Subject: [PATCH 1/2] chore: Follow up seen by row --- lib/pages/chat/seen_by_row.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat/seen_by_row.dart b/lib/pages/chat/seen_by_row.dart index d6800883d..65ecf6cde 100644 --- a/lib/pages/chat/seen_by_row.dart +++ b/lib/pages/chat/seen_by_row.dart @@ -26,7 +26,11 @@ class SeenByRow extends StatelessWidget { builder: (context, asyncSnapshot) { final seenByUsers = event.receipts .map((r) => r.user) - .where((user) => user.id != event.room.client.userID) + .where( + (user) => + user.id != event.room.client.userID && + user.id != event.senderId, + ) .toList(); return Container( width: double.infinity, From 95aca9f9d781db71485caa3bd1ff1b9f0de982c1 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Tue, 3 Mar 2026 17:11:09 +0100 Subject: [PATCH 2/2] chore: Adjust paddings --- lib/pages/chat/chat_input_row.dart | 2 +- lib/pages/chat/recording_input_row.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat/chat_input_row.dart b/lib/pages/chat/chat_input_row.dart index 90173d233..eb92c55c1 100644 --- a/lib/pages/chat/chat_input_row.dart +++ b/lib/pages/chat/chat_input_row.dart @@ -129,7 +129,7 @@ class ChatInputRow extends StatelessWidget { : const SizedBox.shrink(), ] : [ - const SizedBox(width: 4), + const SizedBox(width: 8), AnimatedContainer( duration: FluffyThemes.animationDuration, curve: FluffyThemes.animationCurve, diff --git a/lib/pages/chat/recording_input_row.dart b/lib/pages/chat/recording_input_row.dart index 5e4686e52..b5b66706f 100644 --- a/lib/pages/chat/recording_input_row.dart +++ b/lib/pages/chat/recording_input_row.dart @@ -26,7 +26,7 @@ class RecordingInputRow extends StatelessWidget { crossAxisAlignment: .center, mainAxisAlignment: .spaceBetween, children: [ - const SizedBox(width: 4), + const SizedBox(width: 8), Container( alignment: .center, width: 48,