From a8d42e5e1ec7668203cd112841a04215f98b3af8 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Tue, 22 Sep 2020 11:20:12 -0400 Subject: [PATCH] fix: fix reaction direction in compact mode for current user --- .../Chat/ChatColumn/MessageComponents/EmojiReactions.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/EmojiReactions.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/EmojiReactions.qml index 5a2cd3f73d..bf45d75d03 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/EmojiReactions.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/EmojiReactions.qml @@ -55,9 +55,9 @@ Item { width: 8 height: 8 anchors.top: parent.top - anchors.left: !isCurrentUser ? parent.left : undefined + anchors.left: !isCurrentUser || appSettings.compactMode ? parent.left : undefined anchors.leftMargin: 0 - anchors.right: !isCurrentUser ? undefined : parent.right + anchors.right: !isCurrentUser || appSettings.compactMode ? undefined : parent.right anchors.rightMargin: 0 radius: 2 z: -1