From 078b9e8b663718bcdbb12673760d1c18e2783fee Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 23 Aug 2017 15:32:42 +0200 Subject: [PATCH] Fix placeholder text colour It should use the same colour as the normal text, for now. Contributes to issue CURA-4148. --- resources/qml/Settings/SettingView.qml | 1 + resources/themes/cura/styles.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index 485d364b2d..e16c8ef019 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/resources/qml/Settings/SettingView.qml @@ -62,6 +62,7 @@ Item style: TextFieldStyle { textColor: UM.Theme.getColor("setting_control_text"); + placeholderTextColor: UM.Theme.getColor("setting_control_text") font: UM.Theme.getFont("default"); background: Item {} } diff --git a/resources/themes/cura/styles.qml b/resources/themes/cura/styles.qml index 86e844f18f..e9e3f8ce75 100755 --- a/resources/themes/cura/styles.qml +++ b/resources/themes/cura/styles.qml @@ -736,6 +736,7 @@ QtObject { property Component text_field: Component { TextFieldStyle { textColor: Theme.getColor("setting_control_text"); + placeholderTextColor: Theme.getColor("setting_control_text") font: Theme.getFont("default"); background: Rectangle