aboutsummaryrefslogtreecommitdiff
path: root/components/Label.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/Label.qml')
-rw-r--r--components/Label.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/Label.qml b/components/Label.qml
index 76b13c05..3de0eadb 100644
--- a/components/Label.qml
+++ b/components/Label.qml
@@ -36,6 +36,7 @@ Item {
property alias textFormat: label.textFormat
property string tipText: ""
property int fontSize: 16 * scaleRatio
+ property bool fontBold: false
property alias wrapMode: label.wrapMode
property alias horizontalAlignment: label.horizontalAlignment
signal linkActivated()
@@ -50,7 +51,8 @@ Item {
anchors.left: parent.left
font.family: "Arial"
font.pixelSize: fontSize
- color: "#555555"
+ font.bold: fontBold
+ color: "white"
onLinkActivated: item.linkActivated()
}