mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
graph: Don't insist on "Helvetica" in the Graphviz backend.
Suggested by Fulbert <fulbert@bluewin.ch>. * guix/graph.scm (emit-node): Use "sans" instead of "Helvetica".
This commit is contained in:
parent
2f107f273d
commit
16155bbeb8
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ (define (emit-prologue name port)
|
|||
(define (emit-epilogue port)
|
||||
(display "\n}\n" port))
|
||||
(define (emit-node id label port)
|
||||
(format port " \"~a\" [label = \"~a\", shape = box, fontname = Helvetica];~%"
|
||||
(format port " \"~a\" [label = \"~a\", shape = box, fontname = sans];~%"
|
||||
id label))
|
||||
(define (emit-edge id1 id2 port)
|
||||
(format port " \"~a\" -> \"~a\" [color = ~a];~%"
|
||||
|
|
Loading…
Reference in a new issue