mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Do not reload plugin preset on preset-save
After saving a plugin-preset we only have to mark it as not modified and remember the preset.
This commit is contained in:
parent
2495193c91
commit
bdebac8bec
1 changed files with 2 additions and 2 deletions
|
|
@ -657,7 +657,7 @@ PlugUIBase::add_plugin_setting ()
|
|||
|
||||
Plugin::PresetRecord const r = plugin->save_preset (d.name());
|
||||
if (!r.uri.empty ()) {
|
||||
plugin->load_preset (r);
|
||||
plugin->Plugin::load_preset (r);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
@ -669,7 +669,7 @@ PlugUIBase::save_plugin_setting ()
|
|||
string const name = _preset_combo.get_text ();
|
||||
Plugin::PresetRecord const r = plugin->save_preset (name);
|
||||
if (!r.uri.empty ()) {
|
||||
plugin->load_preset (r);
|
||||
plugin->Plugin::load_preset (r);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue