Fix deliveries overlap with emojies.

This commit is contained in:
Julien Wadel 2024-02-19 09:07:56 +01:00
parent f0c325c208
commit 96c150acde

View file

@ -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