summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gui/PatchCanvas.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp
index 8254b4ed..47cd552b 100644
--- a/src/gui/PatchCanvas.cpp
+++ b/src/gui/PatchCanvas.cpp
@@ -487,8 +487,7 @@ PatchCanvas::connection(SharedPtr<const ConnectionModel> cm)
Ganv::Port* const dst = get_port_view(cm->dst_port());
if (src && dst) {
- new GUI::Connection(*this, cm, src, dst,
- src->get_fill_color() + 0x22222200);
+ new GUI::Connection(*this, cm, src, dst, src->get_fill_color());
} else {
LOG(error) << "Unable to find ports to connect "
<< cm->src_port_path() << " -> " << cm->dst_port_path() << endl;