タブのドロップ語の処理が正しく行われない事があったのを修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@1258 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2007-10-21 06:47:40 +00:00
parent c09a6f7703
commit c191638121

View File

@ -1123,7 +1123,10 @@ catch(e) {
this.partTab(aTarget);
}
else if (aInfo.action & this.kACTION_ATTACH) {
this.attachTabTo(aTarget, aInfo.parent);
if (aInfo.parent)
this.attachTabTo(aTarget, aInfo.parent);
else
this.partTab(aTarget);
}
else {
return false;