NO-OP: mixbus codebase unification
authorRobin Gareus <robin@gareus.org>
Fri, 12 Apr 2019 17:22:59 +0000 (19:22 +0200)
committerRobin Gareus <robin@gareus.org>
Fri, 12 Apr 2019 17:22:59 +0000 (19:22 +0200)
libs/ardour/route.cc
libs/ardour/session.cc

index 793c18d20cd152eeb21de8168e3c1d2a7c9714dc..8f1918ed4c36907a9af40c76a4264c1eb38374df 100644 (file)
@@ -3084,6 +3084,7 @@ Route::set_processor_state (XMLNode const & node, XMLProperty const* prop, Proce
                                                                boost::bind (&Route::processor_selfdestruct, this, boost::weak_ptr<Processor> (processor)));
 
                } else {
+                       warning << string_compose(_("unknown Processor type \"%1\"; ignored"), prop->value()) << endmsg;
                        return false;
                }
 
@@ -5566,8 +5567,8 @@ Route::eq_band_name (uint32_t band) const
        } else {
                switch (band) {
                        case 0: return _("lo");
-                       case 1: return _("lo mid");
-                       case 2: return _("hi mid");
+                       case 1: return _("lm");
+                       case 2: return _("hm");
                        case 3: return _("hi");
                        default: return string();
                }
index cca209cacd4b43c1f2912ff48b8b41e49e301d75..750ef3b23e919b3fd9d5081809de1fd81073771a 100644 (file)
@@ -4172,7 +4172,7 @@ Session::route_solo_changed (bool self_solo_changed, Controllable::GroupControlD
                        }
                        in_signal_flow = true;
                } else {
-                       DEBUG_TRACE (DEBUG::Solo, "\tno feed to\n");
+                       DEBUG_TRACE (DEBUG::Solo, string_compose("\tno feed to %1\n", (*i)->name()) );
                }
 
                if (!in_signal_flow) {