summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-15 20:49:52 +0200
committerRobin Gareus <robin@gareus.org>2015-08-15 23:29:53 +0200
commiteddf50185b51089a63584d56a2b6a56f91a9a718 (patch)
tree1327deb0117133c23244215516b35781949f1498 /gtk2_ardour
parente7bbed3150ea1c1994ac97c99b8058fc9401ca6f (diff)
prepare UI for missing plugins
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/missing_plugin_dialog.cc2
-rw-r--r--gtk2_ardour/processor_box.cc3
2 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/missing_plugin_dialog.cc b/gtk2_ardour/missing_plugin_dialog.cc
index ddbca3a5f4..fe0a597008 100644
--- a/gtk2_ardour/missing_plugin_dialog.cc
+++ b/gtk2_ardour/missing_plugin_dialog.cc
@@ -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 ());
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index 5d21de2f04..32140a8a54 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -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);