diff options
Diffstat (limited to 'server/tools/src/diagram_dot.rs')
| -rw-r--r-- | server/tools/src/diagram_dot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tools/src/diagram_dot.rs b/server/tools/src/diagram_dot.rs index 1701f4ab..307fa470 100644 --- a/server/tools/src/diagram_dot.rs +++ b/server/tools/src/diagram_dot.rs @@ -52,7 +52,7 @@ pub fn diagram_dot(data: &Gamedata, diagram: &Diagram, use_position: bool) -> Re if use_position { attrs.push(format!("pos=\"{},{}!\"", n.position.x, n.position.y)); } - node_style(&mut attrs, &n); + node_style(&mut attrs, n); match &n.label { Message::Text(text) => { attrs.push(format!("label=\"{text}\"")); |