Skip to content
Snippets Groups Projects
Commit c52d057c authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Fix precedence graph for multiple output operations

parent d19f2086
No related branches found
No related tags found
1 merge request!215Fix precedence graph for multiple output operations
Pipeline #90051 passed
...@@ -769,7 +769,12 @@ class SFG(AbstractOperation): ...@@ -769,7 +769,12 @@ class SFG(AbstractOperation):
for port in ports: for port in ports:
port_string = port.name port_string = port.name
if port.operation.output_count > 1: if port.operation.output_count > 1:
sub.node(port_string) sub.node(
port_string,
shape='rectangle',
height="0.1",
width="0.1",
)
else: else:
sub.node( sub.node(
port_string, port_string,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment