diff options
| -rw-r--r-- | internal/fsm/fsm.go | 2 |
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() } |
