mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
NText: Dont RichText by default as it does not elide properly.
Was breaking the bar section editor.
This commit is contained in:
+2
-2
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user