zoom in further by default when going to node

This commit is contained in:
liamcottle
2024-03-30 15:14:54 +13:00
parent b5e6552ace
commit 6125421e00

View File

@ -1134,7 +1134,7 @@
function getConfigZoomLevelGoToNode() { function getConfigZoomLevelGoToNode() {
const value = localStorage.getItem("config_zoom_level_go_to_node"); const value = localStorage.getItem("config_zoom_level_go_to_node");
const parsedValue = value != null ? parseInt(value) : null; const parsedValue = value != null ? parseInt(value) : null;
return parsedValue || 10; return parsedValue || 15;
} }
function setConfigZoomLevelGoToNode(value) { function setConfigZoomLevelGoToNode(value) {