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.
This commit is contained in:
Joshua Goins
2026-02-11 18:52:21 -05:00
parent a9b4a900c9
commit 9f4146e5b1

View File

@@ -41,6 +41,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