瀏覽代碼

Fix the background being too small during export when zoomed out

master
Fen Dweller 4 年之前
父節點
當前提交
ddc800f0bb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js 查看文件

@@ -663,7 +663,7 @@ function drawScales(ifDirty = false) {
ctx.scale(deviceScale, deviceScale);

ctx.beginPath();
ctx.rect(0, 0, canvas.width, canvas.height);
ctx.rect(0, 0, ctx.canvas.width / deviceScale, ctx.canvas.height / deviceScale);
ctx.fillStyle = "#333";
ctx.fill();



Loading…
取消
儲存