Needless dummy "group" tab isn't closed if it is a to-be-restored tab
This commit is contained in:
parent
fd6cac3f6a
commit
0494e7a229
@ -2773,22 +2773,24 @@ TreeStyleTabBrowser.prototype = {
|
||||
|
||||
var parent = this.getParentTab(aTab);
|
||||
|
||||
this.window.setTimeout(function(aSelf) {
|
||||
var siblings = parent && parent.parentNode ? aSelf.getChildTabs(parent) : aSelf.visibleRootTabs ;
|
||||
siblings = siblings.filter(function(aSiblingTab) {
|
||||
return aSiblingTab != aTab;
|
||||
});
|
||||
var groupTabs = siblings.filter(function(aSiblingTab) {
|
||||
return aSelf.isGroupTab(aSiblingTab);
|
||||
});
|
||||
var siblings = parent && parent.parentNode ? this.getChildTabs(parent) : this.visibleRootTabs ;
|
||||
siblings = siblings.filter(function(aSiblingTab) {
|
||||
return aSiblingTab != aTab;
|
||||
});
|
||||
var groupTabs = siblings.filter(function(aSiblingTab) {
|
||||
return this.isGroupTab(aSiblingTab);
|
||||
}, this);
|
||||
|
||||
if (
|
||||
var groupTab = (
|
||||
groupTabs.length == 1 &&
|
||||
siblings.length == 1 &&
|
||||
aSelf.hasChildTabs(groupTabs[0])
|
||||
)
|
||||
aSelf.getTabBrowserFromChild(groupTabs[0]).removeTab(groupTabs[0], { animate : true });
|
||||
}, 0, this);
|
||||
this.hasChildTabs(groupTabs[0])
|
||||
) ? groupTabs[0] : null ;
|
||||
|
||||
if (groupTab)
|
||||
this.window.setTimeout(function(aSelf, aGroupTab) {
|
||||
aSelf.getTabBrowserFromChild(aGroupTab).removeTab(aGroupTab, { animate : true });
|
||||
}, 0, this, groupTab);
|
||||
},
|
||||
getNextFocusedTab : function TSTBrowser_getNextFocusedTab(aTab)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user