Bug 1292345 - Downloads panel didn't shrink to the fit height after all items are downloaded. r=me

MozReview-Commit-ID: AV0S8GM0ztj

--HG--
extra : rebase_source : e8d01256b994368b72c73344232f64cb26d6a357
This commit is contained in:
Drew Willcoxon 2016-08-26 16:36:56 -07:00
Родитель a2979b25f8
Коммит d14c6b15aa
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1525,6 +1525,10 @@ const DownloadsFooter = {
} else {
this._footerNode.removeAttribute("showingsummary");
}
if (!aValue && this._showingSummary) {
// Make sure the panel's height shrinks when the summary is hidden.
DownloadsBlockedSubview.view.setHeightToFit();
}
this._showingSummary = aValue;
}
return aValue;