mirror of
https://github.com/BlueBubblesApp/bluebubbles-app.git
synced 2025-07-01 21:06:29 +08:00
fix: reaction alignment cutoff
This commit is contained in:
@ -547,7 +547,7 @@ class _MessageHolderState extends CustomState<MessageHolder, void, MessageWidget
|
||||
// show reactions on top
|
||||
if (message.isFromMe!)
|
||||
Positioned(
|
||||
top: -15,
|
||||
top: -14,
|
||||
left: -20,
|
||||
child: ReactionHolder(
|
||||
reactions: reactions.where((s) => (s.associatedMessagePart ?? 0) == e.part),
|
||||
@ -556,7 +556,7 @@ class _MessageHolderState extends CustomState<MessageHolder, void, MessageWidget
|
||||
),
|
||||
if (!message.isFromMe!)
|
||||
Positioned(
|
||||
top: -15,
|
||||
top: -14,
|
||||
right: -20,
|
||||
child: ReactionHolder(
|
||||
reactions: reactions.where((s) => (s.associatedMessagePart ?? 0) == e.part),
|
||||
|
Reference in New Issue
Block a user