From 8f7ae26a962fb100c4190b04aff3fad337e78c04 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 4 Feb 2016 11:41:17 -0600 Subject: [PATCH] Fix reporting of compressor mode (Mixbus) --- libs/ardour/route.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 001281f8f4..5eb962da5a 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -5240,6 +5240,8 @@ Route::comp_mode_name (uint32_t mode) const return _("Compressor"); case 2: return _("Limiter"); + case 3: + return mixbus() ? _("Sidechain") : _("Limiter"); } return _("???"); @@ -5258,6 +5260,7 @@ Route::comp_speed_name (uint32_t mode) const case 1: return _("Ratio"); case 2: + case 3: return _("Rels"); } return _("???");