Bug 721354 - Update about:home everytime it's shown (r=blassey)

This commit is contained in:
Lucas Rocha 2012-01-27 10:08:21 +00:00
Родитель 611d1421b2
Коммит cae619ec70
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1114,7 +1114,11 @@ abstract public class GeckoApp
new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT);
mGeckoLayout.addView(mAboutHomeContent, lp);
} else if (mAboutHomeContent != null && mShow) {
mAboutHomeContent.update(GeckoApp.mAppContext,
EnumSet.of(AboutHomeContent.UpdateFlags.TOP_SITES));
}
if (mAboutHomeContent != null)
mAboutHomeContent.setVisibility(mShow ? View.VISIBLE : View.GONE);
}