Skip to content

Commit e1689ec

Browse files
committed
msglist: Move star icon 2px away from the edge of the screen
Fixes: #1247
1 parent ae7939a commit e1689ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/widgets/message_list.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,9 @@ class MessageWithPossibleSender extends StatelessWidget {
13811381
])),
13821382
SizedBox(width: 16,
13831383
child: message.flags.contains(MessageFlag.starred)
1384-
? Icon(ZulipIcons.star_filled, size: 16, color: designVariables.star)
1384+
? Transform.translate(
1385+
offset: const Offset(-2,0),
1386+
child: Icon(ZulipIcons.star_filled, size: 16, color: designVariables.star))
13851387
: null),
13861388
]),
13871389
])));

0 commit comments

Comments
 (0)