summaryrefslogtreecommitdiff
path: root/internal/fsm
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-05 11:30:06 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-05 11:30:06 +0200
commit0dd9081215dabec904170eb0bec652777c6bb690 (patch)
tree6cf1667c18bbd0b87725daffc6a5d140fcf30a63 /internal/fsm
parent8ac62e74679efba92154834d2ebbd259d71edbe0 (diff)
FSM: Set default mermaid graph generation scale to 4
Diffstat (limited to 'internal/fsm')
-rw-r--r--internal/fsm/fsm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fsm/fsm.go b/internal/fsm/fsm.go
index b77ea7e..2042977 100644
--- a/internal/fsm/fsm.go
+++ b/internal/fsm/fsm.go
@@ -162,7 +162,7 @@ func (fsm *FSM) writeGraph() {
f.WriteString(graph)
f.Close()
- cmd := exec.Command("mmdc", "-i", graphFile, "-o", graphImgFile)
+ cmd := exec.Command("mmdc", "-i", graphFile, "-o", graphImgFile, "--scale", "4")
cmd.Start()
}