Ctrlキー長押し・Ctrl-Tabでのタブ切り替え時に縮められたタブバーが

自動的に展開されない問題を修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@2667 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2008-06-18 14:04:50 +00:00
parent 8553378530
commit c9a7dad947
2 changed files with 4 additions and 4 deletions

View File

@ -1332,7 +1332,7 @@ catch(e) {
this.accelKeyPressed
) {
if (this.getTreePref('tabbar.autoShow.accelKeyDown') &&
!sv.tabbarShown &&
!sv.autoHideShown &&
!this.delayedAutoShowTimer) {
this.delayedAutoShowTimer = window.setTimeout(
function(aSelf) {
@ -1392,7 +1392,7 @@ catch(e) {
scrollDown ||
scrollUp ||
( // when you release "shift" key
sv.tabbarShown &&
sv.autoHideShown &&
standBy && !aEvent.shiftKey &&
aEvent.charCode == 0 && aEvent.keyCode == 16
)

View File

@ -19,9 +19,9 @@ pref("extensions.treestyletab.tabbar.autoHide.expandArea", false);
pref("extensions.treestyletab.tabbar.transparent.style", 1);
pref("extensions.treestyletab.tabbar.transparent.partialTransparency", "0.25");
pref("extensions.treestyletab.tabbar.autoShow.mousemove", true);
pref("extensions.treestyletab.tabbar.autoShow.accelKeyDown", false);
pref("extensions.treestyletab.tabbar.autoShow.accelKeyDown", true);
pref("extensions.treestyletab.tabbar.autoShow.accelKeyDown.delay", 800);
pref("extensions.treestyletab.tabbar.autoShow.tabSwitch", false);
pref("extensions.treestyletab.tabbar.autoShow.tabSwitch", true);
pref("extensions.treestyletab.tabbar.autoShow.feedback", false);
pref("extensions.treestyletab.tabbar.autoShow.feedback.delay", 3000);
pref("extensions.treestyletab.tabbar.fixed", false);