Skip to content

Commit 318d505

Browse files
committed
chore : 노드 사이 선 길이 수정
1 parent 6288e10 commit 318d505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/konva_mindmap/utils/nodeAttrs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const TEXT_WIDTH = (depth: number) => NODE_DEFAULT_SIZE * 2 - depth * 18;
1010

1111
//CONNECTED_LINE
1212
export const CONNECTED_LINE_FROM = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 10;
13-
export const CONNECTED_LINE_TO = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 5;
13+
export const CONNECTED_LINE_TO = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 3;
1414

1515
//TEXT
1616
export const TEXT_FONT_SIZE = 16;

0 commit comments

Comments
 (0)