Merge pull request #1803

fe6ce68 Use Text.PlainText as default for Text (xmrdsc)
This commit is contained in:
luigi1111 2018-12-12 13:58:17 -06:00
commit 3cf2b7ddbc
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -35,7 +35,7 @@ Item {
id: item
property alias text: label.text
property alias color: label.color
property alias textFormat: label.textFormat
property int textFormat: Text.PlainText
property string tipText: ""
property int fontSize: 16 * scaleRatio
property bool fontBold: false
@ -65,5 +65,6 @@ Item {
font.bold: fontBold
color: fontColor
onLinkActivated: item.linkActivated()
textFormat: parent.textFormat
}
}