タブバーを上に表示するオプションが意味を持たない時はコマンドを無効化

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6577 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2010-04-07 01:37:58 +00:00
parent 9f65adf634
commit ba02bdb265

View File

@ -1112,9 +1112,12 @@ TreeStyleTabBrowser.prototype = {
var b = this.mTabBrowser;
var orient;
var toggleTabsOnTop = document.getElementById('cmd_ToggleTabsOnTop');
if (this.isVertical) {
orient = 'vertical';
this.setTabbrowserAttribute(this.kFIXED, this.getTreePref('tabbar.fixed.vertical') ? 'true' : null);
if (toggleTabsOnTop)
toggleTabsOnTop.setAttribute('disabled', true);
}
else {
orient = 'horizontal';
@ -1135,10 +1138,18 @@ TreeStyleTabBrowser.prototype = {
}, 0);
}
}
if (toggleTabsOnTop) {
if (this.currentTabbarPosition == 'top')
toggleTabsOnTop.removeAttribute('disabled');
else
toggleTabsOnTop.setAttribute('disabled', true);
}
}
else {
this.removeTabbrowserAttribute(this.kFIXED, b);
this.setTabStripAttribute('height', this.getTreePref('tabbar.height'));
if (toggleTabsOnTop)
toggleTabsOnTop.setAttribute('disabled', true);
}
}