Skip to content

Commit 1db7298

Browse files
committed
msglist: Cut excess spacing between sender and paragraph
This is the "easy hack" Greg mentions in the description of #513. Related: #513
1 parent 3bcfe2c commit 1db7298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/message_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ class MessageWithPossibleSender extends StatelessWidget {
941941
padding: const EdgeInsets.symmetric(vertical: 4),
942942
child: Column(children: [
943943
if (senderRow != null)
944-
Padding(padding: const EdgeInsets.fromLTRB(16, 2, 16, 4),
944+
Padding(padding: const EdgeInsets.fromLTRB(16, 2, 16, 0),
945945
child: senderRow),
946946
Row(crossAxisAlignment: CrossAxisAlignment.start, children: [
947947
const SizedBox(width: 16),

0 commit comments

Comments
 (0)