リサイズ直後に背景が描画されていなかった

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@5073 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2009-09-03 09:22:34 +00:00
parent 07eca3611b
commit d8f3a11688

View File

@ -946,7 +946,11 @@ TreeStyleTabBrowserAutoHide.prototype = {
).booleanValue) {
this.isResizing = false;
sv.mTabBrowser.removeAttribute(sv.kRESIZING);
if (this.shown) this.redrawContentArea();
window.setTimeout(function(aSelf) {
if (!aSelf.shown) return;
aSelf.redrawContentArea();
aSelf.drawBG();
}, 0, this);
}
this.cancelShowHideOnMousemove();
this.lastMouseDownTarget = null;