From b20d84eba32b5cae165fc9c034b4c0c5ad3d428f Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Thu, 29 Feb 2024 16:19:24 -0800 Subject: [PATCH] msglist: Cut excess spacing between sender and paragraph This is the "easy hack" Greg mentions in the description of #513. Fixes: #513 --- lib/widgets/message_list.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index 3a5ca5fae5..d80f31bea4 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -941,7 +941,7 @@ class MessageWithPossibleSender extends StatelessWidget { padding: const EdgeInsets.symmetric(vertical: 4), child: Column(children: [ if (senderRow != null) - Padding(padding: const EdgeInsets.fromLTRB(16, 2, 16, 4), + Padding(padding: const EdgeInsets.fromLTRB(16, 2, 16, 0), child: senderRow), Row(crossAxisAlignment: CrossAxisAlignment.start, children: [ const SizedBox(width: 16),