From ab27f8b945b12ec97b43e582840ecbbeca9abd07 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 22 May 2014 11:44:26 +0200 Subject: [PATCH] use view text color --- src/declarativeimports/plasmacomponents/qml/TextArea.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/declarativeimports/plasmacomponents/qml/TextArea.qml b/src/declarativeimports/plasmacomponents/qml/TextArea.qml index c1c794f3e..79c1977a2 100644 --- a/src/declarativeimports/plasmacomponents/qml/TextArea.qml +++ b/src/declarativeimports/plasmacomponents/qml/TextArea.qml @@ -365,7 +365,7 @@ Item { font.underline: theme.defaultFont.underline font.weight: theme.defaultFont.weight font.wordSpacing: theme.defaultFont.wordSpacing - color: theme.buttonTextColor + color: theme.viewTextColor selectByMouse: verticalScroll.interactive renderType: Text.NativeRendering @@ -404,7 +404,7 @@ Item { anchors.fill: parent text: textArea.placeholderText visible: textEdit.text == "" && !textArea.activeFocus - color: theme.buttonTextColor + color: theme.viewTextColor opacity: 0.5 } }