Fix graphviz crash: use polyline splines instead of ortho
splines=ortho triggers a trapezoid-table overflow assertion in graphviz's dot layout engine on complex graphs. polyline gives similar angled edges without the crash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -104,7 +104,7 @@ class HistoryTree:
|
||||
'digraph History {',
|
||||
f' rankdir={direction};',
|
||||
' bgcolor="white";',
|
||||
' splines=ortho;',
|
||||
' splines=polyline;',
|
||||
f' nodesep={nodesep};',
|
||||
f' ranksep={ranksep};',
|
||||
' node [shape=plain, fontname="Arial"];',
|
||||
|
||||
Reference in New Issue
Block a user