Browse Source

Fix horiziontal axis always using meters

master
Fen Dweller 5 years ago
parent
commit
cc2b375bc8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js View File

@@ -525,7 +525,7 @@ function drawHorizontalScale(ifDirty = false) {

const ctx = canvas.getContext("2d");

let pixelsPer = (ctx.canvas.clientHeight - 100) / config.height.toNumber("meters");
let pixelsPer = (ctx.canvas.clientHeight - 100) / config.height.toNumber();

heightPer = 1;



Loading…
Cancel
Save