prepare UI for missing plugins

This commit is contained in:
Robin Gareus 2015-08-15 20:49:52 +02:00
parent e7bbed3150
commit eddf50185b
2 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@ MissingPluginDialog::MissingPluginDialog (Session * s, list<string> const & plug
t << *i << "\n";
}
t << "\nThose plugins and any following them on a track or buss have been disabled, and will be hidden.\n";
t << "\nThose plugins will be replaced with inactive stubs.\n";
t << "It is recommended that you install the missing plugins and re-load the session.\n";
m->set_markup (t.str ());

View File

@ -120,6 +120,9 @@ ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processo
if (boost::dynamic_pointer_cast<PeakMeter> (_processor)) {
_button.set_elements(ArdourButton::Element(_button.elements() & ~ArdourButton::Indicator));
}
if (boost::dynamic_pointer_cast<UnknownProcessor> (_processor)) {
_button.set_elements(ArdourButton::Element(_button.elements() & ~ArdourButton::Indicator));
}
if (_processor) {
_vbox.pack_start (_routing_icon);