summaryrefslogtreecommitdiffstats
path: root/framework/qml/Label.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-04-20 08:16:58 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-04-20 08:16:58 +0200
commit7d03e68d712320af80548c8b0a4e6c6e53ab3e27 (patch)
tree776e1648fe85abcaf023ed371ed6c98b54e2504a /framework/qml/Label.qml
parent6ca09078e4597bdd97b166266428af7e0b211737 (diff)
downloadkube-7d03e68d712320af80548c8b0a4e6c6e53ab3e27.tar.gz
kube-7d03e68d712320af80548c8b0a4e6c6e53ab3e27.zip
use Kube.Font in Label
Diffstat (limited to 'framework/qml/Label.qml')
-rw-r--r--framework/qml/Label.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/qml/Label.qml b/framework/qml/Label.qml
index c7a71faa..cc8235a3 100644
--- a/framework/qml/Label.qml
+++ b/framework/qml/Label.qml
@@ -18,9 +18,9 @@
18 18
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Templates 2.0 as T 20import QtQuick.Templates 2.0 as T
21import org.kube.framework 1.0 21import org.kube.framework 1.0 as Kube
22 22
23T.Label { 23T.Label {
24 color: Colors.textColor 24 color: Kube.Colors.textColor
25 font.family: "Noto Sans" 25 font.family: Kube.Font.fontFamily
26} 26}