| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.cc b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| index a494c099e845c1360c662246fdbdd1bae37d88a3..17b87eebd619e60717437c38ae29826d70b0988f 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -1271,8 +1271,8 @@ void LocationBarView::OnPaint(gfx::Canvas* canvas) {
|
| paint.setStrokeWidth(1);
|
| gfx::RectF focus_rect(GetLocalBounds());
|
| focus_rect.Inset(gfx::InsetsF(0.5f));
|
| - canvas->DrawRoundRect(focus_rect, BackgroundWith1PxBorder::kCornerRadius,
|
| - paint);
|
| + canvas->DrawRoundRect(
|
| + focus_rect, BackgroundWith1PxBorder::kCornerRadius + 0.5f, paint);
|
| }
|
| if (!is_popup_mode_)
|
| return; // The background and border are painted by our Background.
|
|
|