Fix image reply sizing

Use height rather than implicitHeight for the loader so that replies with images always size properly
This commit is contained in:
James Graham
2023-10-02 18:55:54 +00:00
parent 7180fa022b
commit b1daa76d9f

View File

@@ -80,7 +80,7 @@ Item {
GridLayout {
id: mainLayout
anchors.fill: parent
implicitHeight: Math.max(replyAvatar.implicitHeight, replyName.implicitHeight) + loader.implicitHeight
implicitHeight: Math.max(replyAvatar.implicitHeight, replyName.implicitHeight) + loader.height
rows: 2
columns: 3