タブバーの表示位置を上下にした時もタブバーを自動で隠せるようにした

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@1999 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2008-03-08 10:15:58 +00:00
parent 504d780ca0
commit e6bf59705d
3 changed files with 12 additions and 12 deletions

View File

@ -68,7 +68,7 @@ function onChangeTabbarPosition(aOnChange)
var indentCheck = document.getElementById('extensions.treestyletab.enableSubtreeIndent-check');
var collapseCheck = document.getElementById('extensions.treestyletab.allowSubtreeCollapseExpand-check');
var autoHideCheck = document.getElementById('extensions.treestyletab.tabbar.autoHide.enabled-check');
// var autoHideCheck = document.getElementById('extensions.treestyletab.tabbar.autoHide.enabled-check');
var hideAllTabsCheck = document.getElementById('extensions.treestyletab.tabbar.hideAlltabsButton-check');
if (aOnChange) {
@ -77,12 +77,12 @@ function onChangeTabbarPosition(aOnChange)
}
if (pos == 'left' || pos == 'right') {
indentCheck.setAttribute('collapsed', true);
autoHideCheck.removeAttribute('collapsed');
// autoHideCheck.removeAttribute('collapsed');
hideAllTabsCheck.removeAttribute('collapsed');
}
else {
indentCheck.removeAttribute('collapsed');
autoHideCheck.setAttribute('collapsed', true);
// autoHideCheck.setAttribute('collapsed', true);
hideAllTabsCheck.setAttribute('collapsed', true);
}

View File

@ -99,12 +99,12 @@
label="&config.allowSubtreeCollapseExpand;"/>
</hbox>
<hbox align="center">
<checkbox id="extensions.treestyletab.enableSubtreeIndent-check"
preference="extensions.treestyletab.enableSubtreeIndent"
label="&config.enableSubtreeIndent;"/>
<checkbox id="extensions.treestyletab.tabbar.autoHide.enabled-check"
preference="extensions.treestyletab.tabbar.autoHide.enabled"
label="&config.tabbar.autoHide.enabled;"/>
<checkbox id="extensions.treestyletab.enableSubtreeIndent-check"
preference="extensions.treestyletab.enableSubtreeIndent"
label="&config.enableSubtreeIndent;"/>
<checkbox id="extensions.treestyletab.tabbar.hideAlltabsButton-check"
preference="extensions.treestyletab.tabbar.hideAlltabsButton"
label="&config.tabbar.hideAlltabsButton;"/>

View File

@ -776,9 +776,9 @@ TreeStyleTabBrowser.prototype = {
switch (aData)
{
case 'extensions.treestyletab.tabbar.position':
if (value != 'left' && value != 'right') {
this.endAutoHide();
}
// if (value != 'left' && value != 'right') {
// this.endAutoHide();
// }
this.initTabbar();
tabs.forEach(function(aTab) {
self.initTabAttributes(aTab);
@ -851,7 +851,7 @@ TreeStyleTabBrowser.prototype = {
case 'extensions.treestyletab.tabbar.autoHide.enabled':
var pos = this.mTabBrowser.getAttribute(this.kTABBAR_POSITION);
if (value && (pos == 'left' || pos == 'right'))
if (value/* && (pos == 'left' || pos == 'right')*/)
this.startAutoHide();
else
this.endAutoHide();
@ -1555,8 +1555,8 @@ TreeStyleTabBrowser.prototype = {
XPathResult.FIRST_ORDERED_NODE_TYPE
).singleNodeValue;
var pos = b.getAttribute(this.kTABBAR_POSITION);
if (this.getTreePref('show.'+this.kMENUITEM_AUTOHIDE) &&
(pos == 'left' || pos == 'right')) {
if (this.getTreePref('show.'+this.kMENUITEM_AUTOHIDE)/* &&
(pos == 'left' || pos == 'right')*/) {
autohide.removeAttribute('hidden');
if (this.getTreePref('tabbar.autoHide.enabled'))
autohide.setAttribute('checked', true);