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):
for port in ports:
port_string = port.name
if port.operation.output_count > 1:
sub.node(port_string)
sub.node(
port_string,
shape='rectangle',
height="0.1",
width="0.1",
)
else:
sub.node(
port_string,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment