From 1f53c861b85ef07e60fb589a1c28efbc159e1a5c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 25 Jul 2017 11:26:14 -0400 Subject: remove Track::hidden(); replace with Stripable::is_private_route() --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/session.cc') diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index a880ff0a09..d660cf077c 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -1832,7 +1832,7 @@ Session::set_auto_loop_location (Location* location) boost::shared_ptr rl = routes.reader (); for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { boost::shared_ptr tr = boost::dynamic_pointer_cast (*i); - if (tr && !tr->hidden()) { + if (tr && !tr->is_private_route()) { tr->set_loop (location); } } -- cgit v1.2.3