フルズーム対応を改善
git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@2659 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
3101090b81
commit
0986e27b7f
@ -2986,7 +2986,14 @@ TreeStyleTabBrowser.prototype = {
|
|||||||
}
|
}
|
||||||
ctx.save();
|
ctx.save();
|
||||||
ctx.scale(zoom, zoom);
|
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();
|
ctx.restore();
|
||||||
if (this.mTabBrowser.getAttribute(this.kTRANSPARENT) != this.kTRANSPARENT_STYLE[this.kTRANSPARENT_FULL]) {
|
if (this.mTabBrowser.getAttribute(this.kTRANSPARENT) != this.kTRANSPARENT_STYLE[this.kTRANSPARENT_FULL]) {
|
||||||
var alpha = Number(this.getTreePref('tabbar.transparent.partialTransparency'));
|
var alpha = Number(this.getTreePref('tabbar.transparent.partialTransparency'));
|
||||||
|
Loading…
Reference in New Issue
Block a user