Explorar el Código

Fix the background being too small during export when zoomed out

master
Fen Dweller hace 4 años
padre
commit
ddc800f0bb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js Ver fichero

@@ -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();



Cargando…
Cancelar
Guardar