| Index: chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.mm b/chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.mm
|
| index 5e25aac3d33e7dc1205e97a71eb16927548261c8..6436e43c0aa560cb3434bba7bfecbce09514a78d 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.mm
|
| @@ -84,10 +84,8 @@
|
| [view addSubview:contentView];
|
|
|
| // Wrap the title if necessary to match the width of the content view.
|
| - if (NSWidth([titleLabel frame]) > NSWidth([contentView frame])) {
|
| - [titleLabel setFrameSize:NSMakeSize(NSWidth([contentView frame]), 0)];
|
| - [GTMUILocalizerAndLayoutTweaker sizeToFitFixedWidthTextField:titleLabel];
|
| - }
|
| + [titleLabel setFrameSize:NSMakeSize(NSWidth([contentView frame]), 0)];
|
| + [GTMUILocalizerAndLayoutTweaker sizeToFitFixedWidthTextField:titleLabel];
|
|
|
| // Done button.
|
| doneButton_.reset([[self addButton:l10n_util::GetNSString(IDS_DONE)
|
|
|