Browse Source

Fix auto-size getting stuck on forever

tags/v0.1.0
Fen Dweller 6 years ago
parent
commit
2e21bd3a2a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js View File

@@ -781,7 +781,7 @@ document.addEventListener("DOMContentLoaded", () => {
document.querySelector("#options-world-fit").addEventListener("click", fitWorld); document.querySelector("#options-world-fit").addEventListener("click", fitWorld);


document.querySelector("#options-world-autofit").addEventListener("input", e => { document.querySelector("#options-world-autofit").addEventListener("input", e => {
config.autoFit = e.target.value;
config.autoFit = e.target.checked;


if (config.autoFit) { if (config.autoFit) {


Loading…
Cancel
Save