From 96c150acde2a4c1c5962f718a1322c3dd1be41b6 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Mon, 19 Feb 2024 09:07:56 +0100 Subject: [PATCH] Fix deliveries overlap with emojies. --- .../ui/modules/Linphone/Chat/Message.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/linphone-app/ui/modules/Linphone/Chat/Message.qml b/linphone-app/ui/modules/Linphone/Chat/Message.qml index 9084c94d4..e796e219f 100644 --- a/linphone-app/ui/modules/Linphone/Chat/Message.qml +++ b/linphone-app/ui/modules/Linphone/Chat/Message.qml @@ -135,15 +135,6 @@ Item { } } - ChatDeliveries{ - id: deliveryLayout - anchors.top:rectangle.bottom - anchors.left:parent.left - anchors.right:parent.right - anchors.rightMargin: 50 - - chatMessageModel: $chatEntry - } Loader{ id: reactionLoader anchors.top: rectangle.bottom @@ -165,6 +156,15 @@ Item { onReactionsClicked: container.reactionsClicked($chatEntry) } } + ChatDeliveries{ + id: deliveryLayout + anchors.top: reactionLoader.active ? reactionLoader.bottom : rectangle.bottom + anchors.left:parent.left + anchors.right:parent.right + anchors.rightMargin: 50 + + chatMessageModel: $chatEntry + } ActionButton { id: menuButton