mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 23:25:43 +01:00
Unrecognized plugins are stored in the tagfile (FromPlug); but only set the user_set flag if the user actually edited it.
This commit is contained in:
parent
4734fc23f5
commit
7e5a488d81
1 changed files with 3 additions and 1 deletions
|
|
@ -1553,7 +1553,9 @@ PluginManager::save_tags ()
|
|||
node->set_property (X_("id"), (*i).unique_id);
|
||||
node->set_property (X_("tags"), (*i).tags);
|
||||
node->set_property (X_("name"), (*i).name);
|
||||
node->set_property (X_("user-set"), "1");
|
||||
if ( (*i).tagtype >= FromUserFile ) {
|
||||
node->set_property (X_("user-set"), "1");
|
||||
}
|
||||
root->add_child_nocopy (*node);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue