フルズーム対応を改善

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@2659 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2008-06-17 12:38:22 +00:00
parent 3101090b81
commit 0986e27b7f

View File

@ -2986,7 +2986,14 @@ TreeStyleTabBrowser.prototype = {
}
ctx.save();
ctx.scale(zoom, zoom);
ctx.drawWindow(frame, x+frame.scrollX, y+frame.scrollY, w / zoom, h / zoom, '-moz-field');
ctx.drawWindow(
frame,
(x / zoom)+frame.scrollX,
(y / zoom)+frame.scrollY,
w / zoom,
h / zoom,
'-moz-field'
);
ctx.restore();
if (this.mTabBrowser.getAttribute(this.kTRANSPARENT) != this.kTRANSPARENT_STYLE[this.kTRANSPARENT_FULL]) {
var alpha = Number(this.getTreePref('tabbar.transparent.partialTransparency'));