Fix the emoticon editor looking visually broken

We need to set a minimum width/height here since the Image isn't
technically loaded, when creating a new one.

(cherry picked from commit 9f4146e5b1)
This commit is contained in:
Joshua Goins
2026-02-11 18:52:21 -05:00
parent bb51b1d677
commit 3f096da49b

View File

@@ -39,6 +39,8 @@ FormCard.FormCardPage {
Image {
id: image
Layout.alignment: Qt.AlignRight
Layout.minimumWidth: Kirigami.Units.gridUnit * 4
Layout.minimumHeight: Kirigami.Units.gridUnit * 4
source: root.url
sourceSize.width: Kirigami.Units.gridUnit * 4
sourceSize.height: Kirigami.Units.gridUnit * 4