mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
mark session dirty when changing plugin presets
This commit is contained in:
parent
032139ac30
commit
f0a54d0f9c
1 changed files with 2 additions and 0 deletions
|
|
@ -426,6 +426,7 @@ Plugin::load_preset (PresetRecord r)
|
|||
_last_preset = r;
|
||||
_parameter_changed_since_last_preset = false;
|
||||
|
||||
_session.set_dirty ();
|
||||
PresetLoaded (); /* EMIT SIGNAL */
|
||||
return true;
|
||||
}
|
||||
|
|
@ -437,6 +438,7 @@ Plugin::clear_preset ()
|
|||
_last_preset.label = "";
|
||||
_parameter_changed_since_last_preset = false;
|
||||
|
||||
_session.set_dirty ();
|
||||
PresetLoaded (); /* EMIT SIGNAL */
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue