Skip to content

Commit

Permalink
Increase padding of graphs
Browse files Browse the repository at this point in the history
Ref. #345
  • Loading branch information
Alexander Senier committed Jul 17, 2020
1 parent 1dbf92c commit e6ff01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rflx/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __edge_label(self, link: Link) -> str:
def get(self) -> Dot:
"""Return pydot graph representation of message."""
result = Dot(graph_name=self.__message.full_name)
result.set_graph_defaults(splines="ortho", ranksep="0.8 equally")
result.set_graph_defaults(splines="ortho", ranksep="0.8 equally", pad="0.5")
result.set_edge_defaults(fontname="Fira Code", fontcolor="#6f6f6f", color="#6f6f6f")
result.set_node_defaults(
fontname="Arimo",
Expand Down

0 comments on commit e6ff01a

Please sign in to comment.