Skip to content

Commit

Permalink
<>[]: <Bug fix in orthogonal adapter>
Browse files Browse the repository at this point in the history
[]

[#115]
  • Loading branch information
Humberto Sanchez II committed May 18, 2024
1 parent 2f1f571 commit da6f226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pyutplugins/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = '2.4.0'
__version__: str = '2.4.1'
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def runConnector(self, oglLink: OglLink):
destinationRect: Rect = self._shapeToRect(oglLink.destinationShape)

sourceConnectorPoint: ConnectorPoint = ConnectorPoint(shape=sourceRect, side=sourceSide, distance=self._configuration.sourceEdgeDistance)
destinationConnectorPoint: ConnectorPoint = ConnectorPoint(shape=destinationRect, side=destinationSide, distance=0.5)
destinationConnectorPoint: ConnectorPoint = ConnectorPoint(shape=destinationRect, side=destinationSide, distance=self._configuration.destinationEdgeDistance)

options: OrthogonalConnectorOptions = OrthogonalConnectorOptions()
options.pointA = sourceConnectorPoint
Expand Down

0 comments on commit da6f226

Please sign in to comment.