Index: chrome/browser/ui/panels/panel_browser_frame_view.cc |
=================================================================== |
--- chrome/browser/ui/panels/panel_browser_frame_view.cc (revision 104959) |
+++ chrome/browser/ui/panels/panel_browser_frame_view.cc (working copy) |
@@ -280,6 +280,7 @@ |
title_label_ = new views::Label(string16()); |
title_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |
+ title_label_->SetAutoColorReadabilityEnabled(false); |
AddChildView(title_label_); |
mouse_watcher_.reset(new MouseWatcher(this)); |
@@ -587,7 +588,7 @@ |
paint_state_ = paint_state; |
SkColor title_color = GetTitleColor(paint_state_); |
- title_label_->SetColor(title_color); |
+ title_label_->SetEnabledColor(title_color); |
title_label_->SetFont(*GetTitleFont()); |
close_button_->SetBackground(title_color, |