Firefox 3.0で、ブックマークグループを開いた後にダミーのタブの最後の子を閉じると、すべてのタブが不正に閉じられてしまっていたのを修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@4634 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2009-07-06 03:18:44 +00:00
parent b236986fb0
commit a4d2e907f1

View File

@ -1494,6 +1494,10 @@ TreeStyleTabBrowser.prototype = {
if (this.isGroupTab(parentTab) && !this.getDescendantTabs(parentTab).length) {
if (nextFocusedTab == parentTab)
nextFocusedTab = this.getNextSiblingTab(parentTab) || this.getPreviousSiblingTab(parentTab);
// when closing the last tab on Firefox 3.0
if (!this.getPref('browser.tabs.closeWindowWithLastTab') &&
this.getTabs(b).snapshotLength == 2)
b.addTab('about:blank');
b.removeTab(parentTab);
}
}