diff options
author | David Robillard <d@drobilla.net> | 2015-02-16 03:39:18 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-16 03:39:18 +0000 |
commit | 668f74cd5cbfa95b09a4fe9f74b99770c3c672c4 (patch) | |
tree | 2552e160590aa91850141e8bebc3746dac1182f2 /src/PatchageEvent.cpp | |
parent | 657d2b6bfeafef0a8c3c9da5f7b7b61eea555ad0 (diff) | |
download | patchage-668f74cd5cbfa95b09a4fe9f74b99770c3c672c4.tar.gz patchage-668f74cd5cbfa95b09a4fe9f74b99770c3c672c4.tar.bz2 patchage-668f74cd5cbfa95b09a4fe9f74b99770c3c672c4.zip |
Distinguish edge color from port color slighly.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5577 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageEvent.cpp')
-rw-r--r-- | src/PatchageEvent.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index f11ec97..93a1a02 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -91,8 +91,7 @@ PatchageEvent::execute(Patchage* patchage) patchage->error_msg((format("Unable to find port `%1%' to connect") % _port_2).str()); else - patchage->canvas()->make_connection( - port_1, port_2, port_1->get_fill_color()); + patchage->canvas()->make_connection(port_1, port_2); } else if (_type == DISCONNECTION) { |