diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2019-06-07 15:41:26 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-07-15 21:48:10 +0200 |
commit | 64984004009d900944650be5dfb327150d27dc30 (patch) | |
tree | 0259e248267a769f502276e094171500bd399620 /grc/gui/canvas/connection.py | |
parent | 7fcd64e0d2287b6dc4e408c2349d53d98c0a847e (diff) |
grc: add busports back into 3.8
Bus ports had not been added back in since the refactor of grc
Hopefully this fully enables busports though there are still some
issues with the gr-fec flowgraphs
Fixes #2277
Diffstat (limited to 'grc/gui/canvas/connection.py')
-rw-r--r-- | grc/gui/canvas/connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/canvas/connection.py b/grc/gui/canvas/connection.py index 56dab45570..2accfaf4d6 100644 --- a/grc/gui/canvas/connection.py +++ b/grc/gui/canvas/connection.py @@ -113,7 +113,7 @@ class Connection(CoreConnection, Drawable): self._make_path() # no cr set --> only sets bounding_points for extent def _make_path(self, cr=None): - x_pos, y_pos = self.coordinate # is source connector coordinate + x_pos, y_pos = self.source_port.connector_coordinate_absolute # x_start, y_start = self.source_port.get_connector_coordinate() x_end, y_end = self.sink_port.connector_coordinate_absolute |