Chromium Code Reviews| Index: ash/common/frame/default_header_painter.cc |
| diff --git a/ash/common/frame/default_header_painter.cc b/ash/common/frame/default_header_painter.cc |
| index e21030bdb9ec79a56a4f7aa89e75c01fb675cb2a..f333bf1d4a47c41303bbb3c28f753a40f0660296 100644 |
| --- a/ash/common/frame/default_header_painter.cc |
| +++ b/ash/common/frame/default_header_painter.cc |
| @@ -143,7 +143,7 @@ void DefaultHeaderPainter::PaintHeader(gfx::Canvas* canvas, Mode mode) { |
| int active_alpha = activation_animation_->CurrentValueBetween(0, 255); |
| paint.setColor(color_utils::AlphaBlend(active_frame_color_, |
| inactive_frame_color_, active_alpha)); |
| - |
| + paint.setAntiAlias(true); |
|
James Cook
2016/12/05 23:38:35
Why does this now require AA?
Evan Stade
2016/12/06 00:53:21
It should have always had AA, but it wasn't partic
|
| TileRoundRect(canvas, paint, GetLocalBounds(), corner_radius); |
| if (!frame_->IsMaximized() && !frame_->IsFullscreen() && |