summaryrefslogtreecommitdiff
path: root/libs/ardour/graph.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-23 02:12:47 +0200
committerRobin Gareus <robin@gareus.org>2019-08-23 02:12:47 +0200
commitd52cf0f739ed7606d767963d93f98422989a9d1d (patch)
treecb5436ccb2397ac98045b0913da00abff73d4572 /libs/ardour/graph.cc
parentb858b3b6924dcda7cab1f9cc9c3767e7c6c64ce6 (diff)
Tweak graph display, check direct sends
->feeds() follows connections "track -> master -> monitor" (to detect feedback). Use direct_feeds_according_to_reality() to correctly show sends-only.
Diffstat (limited to 'libs/ardour/graph.cc')
-rw-r--r--libs/ardour/graph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc
index 0cf3f79101..f312826524 100644
--- a/libs/ardour/graph.cc
+++ b/libs/ardour/graph.cc
@@ -579,7 +579,7 @@ Graph::plot (std::string const& file_name) const
boost::shared_ptr<Route> dr = boost::dynamic_pointer_cast<Route> (*ai);
std::string dn = string_compose ("%1 (%2)", dr->name (), (*ai)->_init_refcount[chain]);
bool sends_only = false;
- sr->feeds (dr, &sends_only);
+ sr->direct_feeds_according_to_reality (dr, &sends_only);
if (sends_only) {
ss << " edge [style=dashed];\n";
}