Add an option to use RichText instead of StyledText.
This fixes empty space issue at a cost of reduced performance.
This commit is contained in:
@@ -45,7 +45,7 @@ Rectangle {
|
||||
|
||||
wrapMode: Label.Wrap
|
||||
linkColor: darkBackground ? "white" : Material.accent
|
||||
textFormat: Text.StyledText
|
||||
textFormat: setting.richText ? Text.RichText : Text.StyledText
|
||||
onLinkActivated: Qt.openUrlExternally(link)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user