| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm
|
| index a2501080a4674d5946de73a7ad7bd7ef9af875a5..026da127f6bc79867505cabbbd81726bcad3b9bd 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm
|
| @@ -32,8 +32,8 @@ int HierarchyButtonLeftPadding() {
|
| }
|
|
|
| const int kIconTextSpacer = 4;
|
| -const int kTextRightPadding = 1;
|
| -const int kIconLeftPadding = 1;
|
| +const int kTextRightPadding = 3;
|
| +const int kIconLeftPadding = 3;
|
|
|
| const int kDefaultFontSize = 12;
|
|
|
| @@ -443,8 +443,8 @@ const int kDefaultFontSize = 12;
|
| // In Material Design on Retina, and not in a folder menu, nudge the hover
|
| // background by 1px.
|
| const CGFloat kLineWidth = [controlView cr_lineWidth];
|
| - if ([self tag] == kMaterialStandardButtonTypeWithLimitedClickFeedback &&
|
| - ![self isFolderButtonCell] && kLineWidth < 1) {
|
| + if ([self isMaterialDesignButtonType] && ![self isFolderButtonCell] &&
|
| + kLineWidth < 1) {
|
| return -kLineWidth;
|
| }
|
| return 0.0;
|
|
|