Skip to content

Commit

Permalink
msglist: Cut excess spacing between sender and paragraph
Browse files Browse the repository at this point in the history
This is the "easy hack" Greg mentions in the description of zulip#513.

Related: zulip#513
  • Loading branch information
chrisbobbe committed Mar 1, 2024
1 parent 3bcfe2c commit 1db7298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/message_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 1db7298

Please sign in to comment.