Skip to content

Commit

Permalink
Fixed layouting
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 26, 2023
1 parent 8b04e4f commit d418422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions repository/OpenPonk-FSM/OPFsmController.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ OPFsmController >> applyLayout: anAlgorithm [
figures := self controllers
select: [ :each | each isKindOf: OPFsmVertexController ]
thenCollect: #figure.
edges := (figures flatCollect: #connectedLines) reject: [ :each |
edges := (figures flatCollect: #connectedLines) reject: [ :each |
each from = each to ].
anAlgorithm on: figures edges: edges
anAlgorithm on: figures asGroup edges: edges asGroup
]

{ #category : #testing }
Expand Down

0 comments on commit d418422

Please sign in to comment.