summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/AbstractButton.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/AbstractButton.qml b/framework/qml/AbstractButton.qml
index d55176ea..6738fc63 100644
--- a/framework/qml/AbstractButton.qml
+++ b/framework/qml/AbstractButton.qml
@@ -62,6 +62,6 @@ T.Button {
62 elide: Text.ElideRight 62 elide: Text.ElideRight
63 horizontalAlignment: Text.AlignHCenter 63 horizontalAlignment: Text.AlignHCenter
64 verticalAlignment: Text.AlignVCenter 64 verticalAlignment: Text.AlignVCenter
65 color: root.textColor 65 color: root.enabled ? root.textColor : Colors.disabledTextColor
66 } 66 }
67} 67}