| Index: ash/common/wm/overview/window_grid.cc
|
| diff --git a/ash/common/wm/overview/window_grid.cc b/ash/common/wm/overview/window_grid.cc
|
| index c9ae5c0dd3e42e6a3f164c44b43572fc256f5738..c7c803c9bbf39b2d0a0c52fa6df72451f42beec4 100644
|
| --- a/ash/common/wm/overview/window_grid.cc
|
| +++ b/ash/common/wm/overview/window_grid.cc
|
| @@ -211,10 +211,8 @@ void BackgroundWith1PxBorder::Paint(gfx::Canvas* canvas,
|
| gfx::ScopedCanvas scoped_canvas(canvas);
|
| const float scale = canvas->UndoDeviceScaleFactor();
|
| border_rect_f.Scale(scale);
|
| - if (border_thickness_ > 0) {
|
| - const float inset = border_thickness_ * scale - 0.5f;
|
| - border_rect_f.Inset(inset, inset);
|
| - }
|
| + const float inset = border_thickness_ * scale - 0.5f;
|
| + border_rect_f.Inset(inset, inset);
|
|
|
| SkPath path;
|
| const SkScalar scaled_corner_radius =
|
|
|