Bug 586666 - When new tab is opened, close button of inactive tab disappears; r=gavin.sharp approval2.0=gavin.sharp a=blocking-beta5+

This commit is contained in:
Dão Gottwald 2010-08-16 16:43:04 -04:00
Родитель 2dde9feab0
Коммит a6e692dd84
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -2618,8 +2618,7 @@
if (this.childNodes.length == 1 && this._closeWindowWithLastTab)
this.setAttribute("closebuttons", "noclose");
else {
// Grab the last tab for size comparison
let tab = this.tabbrowser.visibleTabs.pop();
let tab = this.tabbrowser.visibleTabs[this.tabbrowser._numPinnedTabs];
if (tab && tab.getBoundingClientRect().width > this.mTabClipWidth)
this.setAttribute("closebuttons", "alltabs");
else