summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--grc/gui/Connection.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/grc/gui/Connection.py b/grc/gui/Connection.py
index 5362bc0067..6122ec13b4 100644
--- a/grc/gui/Connection.py
+++ b/grc/gui/Connection.py
@@ -183,7 +183,8 @@ class Connection(Element, _Connection):
cr.restore()
# draw arrow on sink port
cr.set_source_rgb(*self._arrow_color)
- for p in self._arrow:
- cr.move_to(*p)
+ cr.move_to(*self._arrow[0])
+ cr.line_to(*self._arrow[1])
+ cr.line_to(*self._arrow[2])
cr.close_path()
cr.fill()