summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-07-02 16:12:06 +0200
committerRobin Gareus <robin@gareus.org>2019-07-02 16:12:06 +0200
commit297ed001d031da624d8b4b8ac4d1bb7212fb7ccd (patch)
tree97f22cd3b322a19d73f4f93ec079e1a48ca35ba0 /libs/ardour/route.cc
parent3630113414b162e746aeae4c90cd1f8960858a80 (diff)
Mixbus/master is always using K20 by default
This only affects the meter-bridge, toolbar and editor track-header (Mixbus' mixer is always using DPM, which is always enabled).
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index e3e907be84..3696925dd1 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -218,7 +218,11 @@ Route::init ()
/* set default meter type */
if (is_master()) {
+#ifdef MIXBUS
+ set_meter_type (MeterK20);
+#else
set_meter_type (Config->get_meter_type_master ());
+#endif
} else if (dynamic_cast<Track*>(this)) {
set_meter_type (Config->get_meter_type_track ());
} else {