From 2e21bd3a2a21a3dc6d7e754553cf04aedfb9374d Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 13 Feb 2020 17:27:10 -0500 Subject: [PATCH] Fix auto-size getting stuck on forever --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index ec69fc83..ee7faa71 100644 --- a/macrovision.js +++ b/macrovision.js @@ -781,7 +781,7 @@ document.addEventListener("DOMContentLoaded", () => { document.querySelector("#options-world-fit").addEventListener("click", fitWorld); document.querySelector("#options-world-autofit").addEventListener("input", e => { - config.autoFit = e.target.value; + config.autoFit = e.target.checked; if (config.autoFit) {