Bug 356805 Undo close tab doesn't show the tab bar if it was hidden

r+sr=neil
This commit is contained in:
cst%yecc.com 2006-12-02 00:29:36 +00:00
Родитель ccb6d1bc81
Коммит 2c9251c5eb
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1159,9 +1159,11 @@
if (this.mTabs.length == 2 &&
!this.mTabs[0].linkedBrowser.webNavigation.sessionHistory.count)
this.removeTab(this.mTabs[0]);
else // if there's only one tab, it's selected anyway
this.removeTab(this.mTabs[0]); // only one tab => selected anyway
else {
this.selectedTab = t;
this.mStrip.collapsed = false;
}
]]>
</body>
</method>