Merge pull request #814 from lonerOrz/fix/about

fix: Fix the rich text display on the About page
This commit is contained in:
Lysec
2025-11-21 15:45:17 +01:00
committed by GitHub
2 changed files with 3 additions and 0 deletions
@@ -146,6 +146,7 @@ ColumnLayout {
}) : I18n.tr("settings.about.contributors.section.description_plural", {
"count": root.contributors.length
})
enableDescriptionRichText: true
}
GridView {
+2
View File
@@ -7,6 +7,7 @@ ColumnLayout {
property string label: ""
property string description: ""
property bool enableDescriptionRichText: false
spacing: Style.marginXXS
Layout.fillWidth: true
@@ -27,5 +28,6 @@ ColumnLayout {
wrapMode: Text.WordWrap
Layout.fillWidth: true
visible: root.description !== ""
richTextEnabled: root.enableDescriptionRichText
}
}