| Index: ui/message_center/cocoa/settings_entry_view.mm
|
| diff --git a/ui/message_center/cocoa/settings_entry_view.mm b/ui/message_center/cocoa/settings_entry_view.mm
|
| index c31d230e6121ad00779aed341662127a896892ba..7006ab3749a27cf772a1ec779b8042b317d225b5 100644
|
| --- a/ui/message_center/cocoa/settings_entry_view.mm
|
| +++ b/ui/message_center/cocoa/settings_entry_view.mm
|
| @@ -169,21 +169,21 @@ const int kCorrectedEntryRightPadding =
|
| notifier_ = notifier;
|
| if (!notifier->icon.IsEmpty())
|
| notifierIcon_.reset(notifier->icon.CopyNSImage());
|
| - [self layout];
|
| + [self layoutEntryView];
|
| }
|
| return self;
|
| }
|
|
|
| - (void)setNotifierIcon:(NSImage*)notifierIcon {
|
| notifierIcon_.reset([notifierIcon retain]);
|
| - [self layout];
|
| + [self layoutEntryView];
|
| }
|
|
|
| - (NSButton*)checkbox {
|
| return checkbox_;
|
| }
|
|
|
| -- (void)layout {
|
| +- (void)layoutEntryView {
|
| BOOL hasLearnMore =
|
| [controller_ notifierHasAdvancedSettings:notifier_->notifier_id];
|
|
|
|
|