From 6b6ccdaff0f60b90edb0639ca7e2c83c4d6f2e4f Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 13 Feb 2026 20:47:28 -0500 Subject: [PATCH] Fix the emoticon editor page It wasn't possible to edit the shortcode or description anymore, because signals weren't hooked up. I also added a separator to help separate some of these controls visually. (cherry picked from commit 4e616d53b2d6bcb0ee92f7d3866db13fc4f5b4c2) --- src/settings/EmoticonEditorPage.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/settings/EmoticonEditorPage.qml b/src/settings/EmoticonEditorPage.qml index b2eac1f49..c7f676a2f 100644 --- a/src/settings/EmoticonEditorPage.qml +++ b/src/settings/EmoticonEditorPage.qml @@ -99,12 +99,15 @@ FormCard.FormCardPage { id: shortcode label: i18n("Shortcode:") text: root.shortcode + onTextChanged: root.shortcode = text } FormCard.FormTextFieldDelegate { id: description label: i18n("Description:") text: root.description + onTextChanged: root.description = text } + FormCard.FormDelegateSeparator {} FormCard.FormButtonDelegate { id: save text: i18n("Save")