summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin_manager.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-03-01 09:09:50 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-03-01 09:09:50 -0600
commit54d0e1d99296d4cf08c4194e6df6ec39ad65465e (patch)
tree82a0d0e74b66b7e5d03e4c1aa0b8ff5ab6931420 /libs/ardour/plugin_manager.cc
parent91046b686d90d8deae539e72a1ee66589af34ed7 (diff)
Fix thinko in prior commit 7c5f1c.
Diffstat (limited to 'libs/ardour/plugin_manager.cc')
-rw-r--r--libs/ardour/plugin_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc
index 897f61c51a..00a89f2d79 100644
--- a/libs/ardour/plugin_manager.cc
+++ b/libs/ardour/plugin_manager.cc
@@ -1544,8 +1544,8 @@ PluginManager::save_tags ()
XMLNode* root = new XMLNode (X_("PluginTags"));
for (PluginTagList::iterator i = ptags.begin(); i != ptags.end(); ++i) {
- if ( (*i).tagtype == FromFactoryFile || (*i).tagtype == FromFactoryFile ) {
- /* user file should contain only plugins that are (a) user-tagged or (b) previously unknown */
+ if ( (*i).tagtype == FromFactoryFile || (*i).tagtype == FromUserFile ) {
+ /* user file should contain only plugins that are (a) newly user-tagged or (b) previously unknown */
continue;
}
XMLNode* node = new XMLNode (X_("Plugin"));