From 3f096da49b3eab95de5bf2b479c80c6f6e926a8f Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 11 Feb 2026 18:52:21 -0500 Subject: [PATCH] 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 9f4146e5b1e7842ff94f1c3b95a36f34f8db87e1) --- src/settings/EmoticonEditorPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/settings/EmoticonEditorPage.qml b/src/settings/EmoticonEditorPage.qml index 6caecb8c3..b2eac1f49 100644 --- a/src/settings/EmoticonEditorPage.qml +++ b/src/settings/EmoticonEditorPage.qml @@ -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