| Index: chrome/browser/ui/views/layout_constants.cc
|
| diff --git a/chrome/browser/ui/views/layout_constants.cc b/chrome/browser/ui/views/layout_constants.cc
|
| index de59375c435eb208a224304b4f9e33a0ec334717..c291e7a8ffe905ad62bc1d636993d6a92dcad0d6 100644
|
| --- a/chrome/browser/ui/views/layout_constants.cc
|
| +++ b/chrome/browser/ui/views/layout_constants.cc
|
| @@ -9,7 +9,8 @@
|
|
|
| int GetLayoutConstant(LayoutConstant constant) {
|
| const int kFindBarVerticalOffset[] = {1, 6, 6};
|
| - const int kIconLabelViewInternalPadding[] = {3, 2, 2};
|
| + // The -1 means the label and the icon will overlap by a pixel.
|
| + const int kIconLabelViewInternalPadding[] = {3, -1, -1};
|
| const int kIconLabelViewTrailingPadding[] = {2, 8, 8};
|
| const int kLocationBarBorderThickness[] = {2, 1, 1};
|
| const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4};
|
|
|