| Index: chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
|
| index 433ef2f58e89637d7abf9515f56fac0d40faccbd..dba8cde6d20c7c153ef804e87eada5b008c9b472 100644
|
| --- a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
|
| @@ -2332,7 +2332,8 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
|
| NSFontAttributeName : [profileButton font]
|
| }];
|
|
|
| - if (std::ceil(textSize.width) > availableWidth)
|
| + if (!switches::IsMaterialDesignUserMenu() &&
|
| + std::ceil(textSize.width) > availableWidth)
|
| [profileButton setToolTip:[profileButton title]];
|
|
|
| return profileButton.autorelease();
|
|
|