From 960cff790bb246c9b6e1d48751ee9854b1d61736 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 3 Dec 2014 14:24:30 -0500 Subject: [PATCH] mark session dirty after scene change is added/removed --- libs/ardour/location.cc | 1 + 1 file changed, 1 insertion(+) 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 sc) { if (_scene_change != sc) { _scene_change = sc; + _session.set_dirty (); scene_changed (); /* EMIT SIGNAL */ SceneChangeChanged (); /* EMIT SIGNAL */