| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| index f09e8fc25700e719361f215453e064db29c5137b..0ddbeff43752da5c0639092d5ba110e8dbe8a73c 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| @@ -1971,10 +1971,12 @@ CGFloat BookmarkRightMargin() {
|
| [BookmarkButtonCell buttonCellWithText:text
|
| image:image
|
| menuController:contextMenuController_];
|
| - if (ui::MaterialDesignController::IsModeMaterial())
|
| + if (ui::MaterialDesignController::IsModeMaterial()) {
|
| [cell setTag:kMaterialStandardButtonTypeWithLimitedClickFeedback];
|
| - else
|
| + [cell setHighlightsBy:NSNoCellMask];
|
| + } else {
|
| [cell setTag:kStandardButtonTypeWithLimitedClickFeedback];
|
| + }
|
|
|
| // Note: a quirk of setting a cell's text color is that it won't work
|
| // until the cell is associated with a button, so we can't theme the cell yet.
|
|
|