Skip to content

Commit c8295ae

Browse files
committed
msglist: Adjust edit-message status row bottom padding
This changes the bottom padding from 4px to 2px, to match the later added status row for outbox messages. See discussion: zulip#1453 (comment)
1 parent cfbbdc0 commit c8295ae

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
@@ -1504,7 +1504,7 @@ class MessageWithPossibleSender extends StatelessWidget {
15041504
behavior: HitTestBehavior.translucent,
15051505
onLongPress: () => showMessageActionSheet(context: context, message: message),
15061506
child: Padding(
1507-
padding: const EdgeInsets.symmetric(vertical: 4),
1507+
padding: const EdgeInsets.only(top: 4, bottom: 2),
15081508
child: Column(children: [
15091509
if (item.showSender)
15101510
_SenderRow(message: message, showTimestamp: true),

0 commit comments

Comments
 (0)