Chromium Code Reviews| Index: ui/views/controls/menu/menu_item_view.cc |
| diff --git a/ui/views/controls/menu/menu_item_view.cc b/ui/views/controls/menu/menu_item_view.cc |
| index d36350e12246dc611b8de88afb5a0ec8f7d6755a..a405cb24ced6de584d4147734675ef78c1d43e48 100644 |
| --- a/ui/views/controls/menu/menu_item_view.cc |
| +++ b/ui/views/controls/menu/menu_item_view.cc |
| @@ -787,9 +787,9 @@ void MenuItemView::PaintButton(gfx::Canvas* canvas, PaintButtonMode mode) { |
| bool emphasized = delegate && |
| delegate->GetShouldUseDisabledEmphasizedForegroundColor( |
| GetCommand()); |
| - color_id = emphasized ? |
| - ui::NativeTheme::kColorId_DisabledEmphasizedMenuItemForegroundColor : |
| - ui::NativeTheme::kColorId_DisabledMenuItemForegroundColor; |
| + color_id = emphasized |
| + ? ui::NativeTheme::kColorId_EnabledMenuItemForegroundColor |
|
Evan Stade
2016/09/30 18:02:36
it really seems like this is just a special case w
tdanderson
2016/09/30 21:00:56
SG, but if you're changing this then consider also
Evan Stade
2016/09/30 22:19:00
held my nose and changed it
|
| + : ui::NativeTheme::kColorId_DisabledMenuItemForegroundColor; |
| } |
| SkColor fg_color = native_theme->GetSystemColor(color_id); |
| SkColor override_foreground_color; |