diff options
Diffstat (limited to 'framework/qml/Label.qml')
-rw-r--r-- | framework/qml/Label.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/Label.qml b/framework/qml/Label.qml index 850ed8ba..b2bfc94a 100644 --- a/framework/qml/Label.qml +++ b/framework/qml/Label.qml | |||
@@ -21,7 +21,7 @@ import QtQuick.Templates 2.0 as T | |||
21 | import org.kube.framework 1.0 as Kube | 21 | import org.kube.framework 1.0 as Kube |
22 | 22 | ||
23 | T.Label { | 23 | T.Label { |
24 | color: Kube.Colors.textColor | 24 | color: enabled ? Kube.Colors.textColor : Kube.Colors.disabledTextColor |
25 | font.family: Kube.Font.fontFamily | 25 | font.family: Kube.Font.fontFamily |
26 | linkColor: Kube.Colors.highlightColor | 26 | linkColor: Kube.Colors.highlightColor |
27 | onLinkActivated: Qt.openUrlExternally(link) | 27 | onLinkActivated: Qt.openUrlExternally(link) |