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:
parent
b236986fb0
commit
a4d2e907f1
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user