diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 22:53:53 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 22:53:53 +0200 |
commit | 4d2a5d1e9b1fded11591fbefa6950baf51792959 (patch) | |
tree | 0a2dadf4e437ebe06cb67a6d0fca33a53b49c53b /resources | |
parent | Make effect messages stand out more (diff) | |
download | nheko-4d2a5d1e9b1fded11591fbefa6950baf51792959.tar.xz |
Attach reactions on the right for our own bubbled messages
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/TimelineBubbleMessageStyle.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineBubbleMessageStyle.qml b/resources/qml/TimelineBubbleMessageStyle.qml index d1a80976..ef6aba6e 100644 --- a/resources/qml/TimelineBubbleMessageStyle.qml +++ b/resources/qml/TimelineBubbleMessageStyle.qml @@ -294,7 +294,7 @@ TimelineEvent { id: reactionRow eventId: wrapper.eventId - layoutDirection: row.bubbleOnRight ? Qt.RightToLeft : Qt.LeftToRight + layoutDirection: (!wrapper.isStateEvent && wrapper.isSender) ? Qt.RightToLeft : Qt.LeftToRight reactions: wrapper.reactions width: wrapper.width - wrapper.avatarMargin x: wrapper.avatarMargin |