Skip to content

Commit

Permalink
misc: small fix or general refactoring i did not bother commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Apr 8, 2021
1 parent 7163405 commit e465f9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/graph/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ func (g *Graph) Dot(filter, layout, name string, disconnected bool) (string, int
return "", 0, 0, err
}

/*
data += "\n"
data += "node [style=filled height=0.55 fontname=\"Verdana\" fontsize=10];\n"
data += "subgraph legend {\n" +
Expand All @@ -224,8 +225,8 @@ func (g *Graph) Dot(filter, layout, name string, disconnected bool) (string, int
for i := 0; i < ntypes - 1; i++ {
data += fmt.Sprintf(" \"%s\" -> \"%s\" [style=invis];\n", types[i], types[i + 1])
}

data += "}\n"
*/

data += "\n"
data += " overlap=false\n"
Expand Down

0 comments on commit e465f9b

Please sign in to comment.