diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-20 08:16:58 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-20 08:16:58 +0200 |
commit | 7d03e68d712320af80548c8b0a4e6c6e53ab3e27 (patch) | |
tree | 776e1648fe85abcaf023ed371ed6c98b54e2504a /framework/qml/Label.qml | |
parent | 6ca09078e4597bdd97b166266428af7e0b211737 (diff) | |
download | kube-7d03e68d712320af80548c8b0a4e6c6e53ab3e27.tar.gz kube-7d03e68d712320af80548c8b0a4e6c6e53ab3e27.zip |
use Kube.Font in Label
Diffstat (limited to 'framework/qml/Label.qml')
-rw-r--r-- | framework/qml/Label.qml | 6 |
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 | ||
19 | import QtQuick 2.7 | 19 | import QtQuick 2.7 |
20 | import QtQuick.Templates 2.0 as T | 20 | import QtQuick.Templates 2.0 as T |
21 | import org.kube.framework 1.0 | 21 | import org.kube.framework 1.0 as Kube |
22 | 22 | ||
23 | T.Label { | 23 | T.Label { |
24 | color: Colors.textColor | 24 | color: Kube.Colors.textColor |
25 | font.family: "Noto Sans" | 25 | font.family: Kube.Font.fontFamily |
26 | } | 26 | } |