From dfae61cc1483e261c5d4632075f6cd101c7f2f72 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 3 Jan 2026 03:24:21 +0000 Subject: [PATCH] Increase default spacing when adding child nodes via + button Changed gap from 72px to 100px for better visual spacing --- js/connections.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/connections.js b/js/connections.js index 0c61645..accf88c 100644 --- a/js/connections.js +++ b/js/connections.js @@ -456,7 +456,7 @@ export function completeConnectionWithNewMemo(canvasX, canvasY) { // Add child node connected to parent export function addChildNode(parent, dir, type = 'memo') { - const gap = 72; + const gap = 100; const cw = 180; const ch = 100; let x, y, fh, th;