summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 01:46:13 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 01:46:13 (EDT)
commit6e28e3b1512e9bbbd0481ebc6395acfdc7a823df (patch)
tree42a00615bce3cf868e7ad6544c3280bdf7e01e10
parent95411c70b75a2399a9b1880f0e59088a441d3b03 (diff)
Set font face to FreeSans
-rwxr-xr-xbin/depsdot4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/depsdot b/bin/depsdot
index 4dad087..ba3d43a 100755
--- a/bin/depsdot
+++ b/bin/depsdot
@@ -82,7 +82,9 @@ sub main
"\n\t\tGray nodes are leaf packages (no reverse dependencies)" .
"<BR/>\n\t\tGray edges are dependencies on multiple source " .
"packages&nbsp;\n\t\t\tthat build binaries of the same name>;" .
- "\n\n\t/* Source packages */\n");
+ "\n\tgraph [fontname=\"FreeSans\"];\n" .
+ "\tnode [fontname=\"FreeSans\"];\n" .
+ "\tedge [fontname=\"FreeSans\"];\n\n\t/* Source packages */\n");
foreach my $src (sort(@src_pkgs)) {
my $attr = '';
if (not defined($non_leaf_src_pkgs{$src})) {