From 2fd322536ba1d77ac4a0b5e5cc461f0cc3cbf9f6 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Tue, 1 Apr 2014 17:18:12 +0200 Subject: [PATCH] text areas use textViewColor --- src/declarativeimports/plasmacomponents/qml/TextArea.qml | 2 +- src/declarativeimports/plasmacomponents/qml/TextField.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/declarativeimports/plasmacomponents/qml/TextArea.qml b/src/declarativeimports/plasmacomponents/qml/TextArea.qml index 1d6f44dbf..158e10a31 100644 --- a/src/declarativeimports/plasmacomponents/qml/TextArea.qml +++ b/src/declarativeimports/plasmacomponents/qml/TextArea.qml @@ -357,7 +357,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 diff --git a/src/declarativeimports/plasmacomponents/qml/TextField.qml b/src/declarativeimports/plasmacomponents/qml/TextField.qml index d2d283eb8..d5883a683 100644 --- a/src/declarativeimports/plasmacomponents/qml/TextField.qml +++ b/src/declarativeimports/plasmacomponents/qml/TextField.qml @@ -319,7 +319,7 @@ FocusScope { text: placeholderText visible: textInput.text == "" && !textField.activeFocus // XXX: using textColor and low opacity for theming placeholderText - color: theme.buttonTextColor + color: theme.viewTextColor opacity: 0.5 elide: Text.ElideRight clip: true @@ -349,7 +349,7 @@ FocusScope { renderType: Text.NativeRendering passwordCharacter: "•" selectByMouse: true - color: theme.buttonTextColor + color: theme.viewTextColor enabled: textField.enabled clip: true focus: true