From 0178f85b05139e217c3749442d9d66a93839683c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 31 Oct 2014 22:17:30 -0400 Subject: Don't complain about properties with plugins that do not support them. --- gtk2_ardour/generic_pluginui.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc index feea27b0b9..79373af836 100644 --- a/gtk2_ardour/generic_pluginui.cc +++ b/gtk2_ardour/generic_pluginui.cc @@ -340,7 +340,9 @@ GenericPluginUI::build () << " type " << d->datatype << std::endl; } } - plugin->announce_property_values(); + if (!descs.empty()) { + plugin->announce_property_values(); + } // Iterate over the list of controls to find which adjacent controls // are similar enough to be grouped together. -- cgit v1.2.3