--HG--
branch : gloda-facet
This commit is contained in:
David Ascher 2009-09-03 17:24:45 -07:00
Родитель 4002acea92
Коммит b84ad3f90c
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -893,7 +893,9 @@ FolderDisplayWidget.prototype = {
}
// update the quick-search relative to whether it's incoming/outgoing
document.getElementById("searchInput").folderChanged(this.view.isOutgoingFolder)
let searchInput = document.getElementById("searchInput");
if (searchInput)
searchInput.folderChanged(this.view.isOutgoingFolder)
if (this.active)
this.makeActive();