NText: Dont RichText by default as it does not elide properly.

Was breaking the bar section editor.
This commit is contained in:
ItsLemmy
2025-11-20 00:11:51 -05:00
parent 42e2ba09ff
commit 1ceb97c08f
+2 -2
View File
@@ -6,7 +6,7 @@ import qs.Widgets
Text {
id: root
property bool richTextEnabled: true
property bool richTextEnabled: false
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.PlainText
textFormat: richTextEnabled ? Text.RichText : Text.StyledText
}