summaryrefslogtreecommitdiff
path: root/libs/ardour/location.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-03 14:24:30 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-29 14:18:13 -0400
commit960cff790bb246c9b6e1d48751ee9854b1d61736 (patch)
tree1ba43f254c992987448d6e7f1e747322ff681577 /libs/ardour/location.cc
parenta47cacfcc6213674ac5e8b40474f5a513c4e99e9 (diff)
mark session dirty after scene change is added/removed
Diffstat (limited to 'libs/ardour/location.cc')
-rw-r--r--libs/ardour/location.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc
index 9d7e7c3e57..c693e1f5d5 100644
--- a/libs/ardour/location.cc
+++ b/libs/ardour/location.cc
@@ -761,6 +761,7 @@ Location::set_scene_change (boost::shared_ptr<SceneChange> sc)
{
if (_scene_change != sc) {
_scene_change = sc;
+ _session.set_dirty ();
scene_changed (); /* EMIT SIGNAL */
SceneChangeChanged (); /* EMIT SIGNAL */