| Index: ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| diff --git a/ui/views/controls/tabbed_pane/tabbed_pane.cc b/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| index be383ce10c59d1e7dc8472ceb1677ab5af12f701..c04c365a1b18446fb53108b0e902ae633d674e36 100644
|
| --- a/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| +++ b/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| @@ -281,9 +281,11 @@ MdTab::~MdTab() {}
|
| void MdTab::OnStateChanged() {
|
| ui::NativeTheme* theme = GetNativeTheme();
|
|
|
| - SkColor font_color = selected()
|
| - ? theme->GetSystemColor(ui::NativeTheme::kColorId_ProminentButtonColor)
|
| - : theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonEnabledColor);
|
| + SkColor font_color =
|
| + selected() ? theme->GetSystemColor(
|
| + ui::NativeTheme::kColorId_ProminentButtonColor)
|
| + : theme->GetSystemColor(
|
| + ui::NativeTheme::kColorId_TextOnEnabledDialogButton);
|
| title()->SetEnabledColor(font_color);
|
|
|
| gfx::Font::Weight font_weight = gfx::Font::Weight::MEDIUM;
|
|
|