From 4734fc23f575d209a231db095833ed74438db215 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 2 Mar 2018 15:57:58 -0600 Subject: [PATCH] Allow successive changes from the Gui to set tags. --- libs/ardour/plugin_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index e506d5db0b..1703265f34 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -1613,7 +1613,7 @@ PluginManager::set_tags (PluginType t, string id, string tag, std::string name, PluginTagList::const_iterator i = find (ptags.begin(), ptags.end(), ps); if (i == ptags.end()) { ptags.insert (ps); - } else if ( (uint32_t) ttype > (uint32_t) (*i).tagtype ) { // only overwrite if we are more important than the existing. Gui > UserFile > FactoryFile > Plugin + } else if ( (uint32_t) ttype >= (uint32_t) (*i).tagtype ) { // only overwrite if we are more important than the existing. Gui > UserFile > FactoryFile > Plugin ptags.erase (ps); ptags.insert (ps); }