From a963809a0a2c39acc7469baf393c1ac2e19b76cb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 28 Nov 2020 09:54:13 +0100 Subject: Fix connections with Jack DBus --- NEWS | 6 ++++++ src/JackDbusDriver.cpp | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a162b0e..208a562 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +patchage (1.0.3) unstable; + + * Fix connections with Jack DBus + + -- David Robillard Sat, 28 Nov 2020 08:53:57 +0000 + patchage (1.0.2) stable; * Add support for exporting canvas as PDF diff --git a/src/JackDbusDriver.cpp b/src/JackDbusDriver.cpp index c3bcbe8..d13ce68 100644 --- a/src/JackDbusDriver.cpp +++ b/src/JackDbusDriver.cpp @@ -719,7 +719,7 @@ JackDriver::connect_ports(dbus_uint64_t /*connection_id*/, return; } - _app->canvas()->connect(port1, port2); + _app->canvas()->make_connection(port1, port2); } void @@ -749,7 +749,7 @@ JackDriver::disconnect_ports(dbus_uint64_t /*connection_id*/, return; } - _app->canvas()->disconnect(port1, port2); + _app->canvas()->remove_edge_between(port1, port2); } void -- cgit v1.2.1