| Index: ui/views/controls/textfield/textfield.cc
|
| diff --git a/ui/views/controls/textfield/textfield.cc b/ui/views/controls/textfield/textfield.cc
|
| index d26febc0609540ae3f4d713ace1d7432b3441ff1..c75ba050ba3697388502baf0ac5658f156923c4e 100644
|
| --- a/ui/views/controls/textfield/textfield.cc
|
| +++ b/ui/views/controls/textfield/textfield.cc
|
| @@ -1829,7 +1829,10 @@ void Textfield::PaintTextAndCursor(gfx::Canvas* canvas) {
|
| gfx::RenderText* render_text = GetRenderText();
|
| if (text().empty() && !GetPlaceholderText().empty()) {
|
| canvas->DrawStringRect(GetPlaceholderText(), GetFontList(),
|
| - placeholder_text_color(), render_text->display_rect());
|
| + ui::MaterialDesignController::IsSecondaryUiMaterial()
|
| + ? SkColorSetA(GetTextColor(), 0x83)
|
| + : placeholder_text_color_,
|
| + render_text->display_rect());
|
| }
|
|
|
| // Draw the text, cursor, and selection.
|
|
|