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 4e616d53b2)
This commit is contained in:
@@ -99,12 +99,15 @@ FormCard.FormCardPage {
|
|||||||
id: shortcode
|
id: shortcode
|
||||||
label: i18n("Shortcode:")
|
label: i18n("Shortcode:")
|
||||||
text: root.shortcode
|
text: root.shortcode
|
||||||
|
onTextChanged: root.shortcode = text
|
||||||
}
|
}
|
||||||
FormCard.FormTextFieldDelegate {
|
FormCard.FormTextFieldDelegate {
|
||||||
id: description
|
id: description
|
||||||
label: i18n("Description:")
|
label: i18n("Description:")
|
||||||
text: root.description
|
text: root.description
|
||||||
|
onTextChanged: root.description = text
|
||||||
}
|
}
|
||||||
|
FormCard.FormDelegateSeparator {}
|
||||||
FormCard.FormButtonDelegate {
|
FormCard.FormButtonDelegate {
|
||||||
id: save
|
id: save
|
||||||
text: i18n("Save")
|
text: i18n("Save")
|
||||||
|
|||||||
Reference in New Issue
Block a user