Commit d03afdba authored by dewittj@chromium.org's avatar dewittj@chromium.org

Fix bug preventing app icons in notification settings view.

Icons loaded asynchronously needed to cause a relayout instead of just
a change to the layout manager.

R=jianli@chromium.org
BUG=315244

Review URL: https://codereview.chromium.org/61003002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233532 0039d316-1c4b-4281-b951-d872f2087c98
parent e6433150
...@@ -469,6 +469,8 @@ void NotifierSettingsView::NotifierButton::GridChanged(bool has_learn_more, ...@@ -469,6 +469,8 @@ void NotifierSettingsView::NotifierButton::GridChanged(bool has_learn_more,
layout->AddView(name_view_); layout->AddView(name_view_);
if (has_learn_more) if (has_learn_more)
layout->AddView(learn_more_); layout->AddView(learn_more_);
Layout();
} }
NotifierSettingsView::NotifierSettingsView(NotifierSettingsProvider* provider) NotifierSettingsView::NotifierSettingsView(NotifierSettingsProvider* provider)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment