NText: richText by default as it is used in a few legacy places.

This commit is contained in:
ItsLemmy
2025-11-19 16:18:22 -05:00
parent d74f1feece
commit da8fa306a1
+2 -2
View File
@@ -6,7 +6,7 @@ import qs.Widgets
Text {
id: root
property bool richTextEnabled: false
property bool richTextEnabled: true
property string family: Settings.data.ui.fontDefault
property real pointSize: Style.fontSizeM
property bool applyUiScale: true
@@ -26,5 +26,5 @@ Text {
wrapMode: Text.NoWrap
verticalAlignment: Text.AlignVCenter
textFormat: richTextEnabled ? Text.RichText : Text.StyledText
textFormat: richTextEnabled ? Text.RichText : Text.PlainText
}