summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2016-02-03 10:35:35 -0800
committerLen Ovens <len@ovenwerks.net>2016-02-03 10:35:35 -0800
commit7d5671a4117d8d95ecad5073430e591b7c5e02bf (patch)
tree7ed9469cb150c624f2713a15a9dc35643625def0 /libs/ardour/route.cc
parent9cce8d10a96c6ebcc39987c9fd3ef0a770f09866 (diff)
mackie control: Fix crash when selecting Track on MIDI strip, don't create phase control if there is none.
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 79fbeb546e..001281f8f4 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -4209,6 +4209,16 @@ Route::trim_control() const
return _trim_control;
}
+boost::shared_ptr<Route::PhaseControllable>
+Route::phase_control() const
+{
+ if (phase_invert().size()) {
+ return _phase_control;
+ } else {
+ return boost::shared_ptr<PhaseControllable>();
+ }
+}
+
boost::shared_ptr<AutomationControl>
Route::get_control (const Evoral::Parameter& param)
{