From a91be8eb9dee250c0156bd674f4e4cbc0bd0c2a8 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 29 Jan 2022 17:12:38 -0500 Subject: [PATCH] Adjust default settings The ground now defaults to very-low, not bottom. Zoom-on-add defaults to off. --- macrovision.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macrovision.js b/macrovision.js index 1cc7d55b..703c6c8f 100644 --- a/macrovision.js +++ b/macrovision.js @@ -3114,7 +3114,7 @@ const settingsData = { name: "Ground Position", desc: "How high the ground is if the y-axis is locked", type: "select", - default: "bottom", + default: "very-low", options: groundPosChoices, get value() { return config.groundPos; @@ -3168,7 +3168,7 @@ const settingsData = { name: "Zoom On Add", desc: "Zoom to fit when you add a new entity", type: "toggle", - default: true, + default: false, get value() { return config.autoFitAdd; },