タブのプレビューを描画する時に一時的にフォーカスが切り替わる際は、ツリーを自動的には開閉しないようにした

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6574 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2010-04-06 14:28:51 +00:00
parent 36e8eeea2c
commit 7e23d99726

View File

@ -2495,6 +2495,11 @@ TreeStyleTabBrowser.prototype = {
var b = this.mTabBrowser;
var tab = b.selectedTab
/* <tabbrowser>.previewTab() focuses to the tab internally,
so we should ignore this event if it is fired from previewTab(). */
if (b._previewMode)
return;
if (this.isCollapsed(tab)) {
if (this.getTreePref('autoExpandSubtreeOnCollapsedChildFocused')) {
var parentTab = tab;