From 37f787c210784cba898043977ed2e01490478cdf Mon Sep 17 00:00:00 2001 From: syrineladeb02 Date: Wed, 8 May 2024 18:24:23 +0100 Subject: [PATCH] update --- lib/widgets/message_list.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index f3c8b63ba0..4034f5f75d 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -971,13 +971,13 @@ class MessageWithPossibleSender extends StatelessWidget { if ((message.reactions?.total ?? 0) > 0) ReactionChipsList(messageId: message.id, reactions: message.reactions!) ])), - SizedBox(width: 16, + SizedBox(width: 17, child: message.flags.contains(MessageFlag.starred) // TODO(#157): fix how star marker aligns with message content // Design from Figma at: // https://www.figma.com/file/1JTNtYo9memgW7vV6d0ygq/Zulip-Mobile?node-id=813%3A28817&mode=dev . - ? Padding(padding: const EdgeInsets.only(top: 4), - child: Icon(ZulipIcons.star_filled, size: 16, color: _starColor)) + ? Padding(padding: const EdgeInsets.only(top: 5.5), + child: Icon(ZulipIcons.star_filled, size: 17, color: _starColor)) : null), ]), ])));