From 6125421e00b37dfeab42ab86df6a60e6a76e4275 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Sat, 30 Mar 2024 15:14:54 +1300 Subject: [PATCH] zoom in further by default when going to node --- src/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index 8391b4d..2a298aa 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -1134,7 +1134,7 @@ function getConfigZoomLevelGoToNode() { const value = localStorage.getItem("config_zoom_level_go_to_node"); const parsedValue = value != null ? parseInt(value) : null; - return parsedValue || 10; + return parsedValue || 15; } function setConfigZoomLevelGoToNode(value) {