summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/plugin.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc
index 884ac0d53e..a0ac97b440 100644
--- a/libs/ardour/plugin.cc
+++ b/libs/ardour/plugin.cc
@@ -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 */
}