Set session dirty if tracks are reordered by user.
authorLen Ovens <len@ovenwerks.net>
Mon, 7 Nov 2016 16:29:34 +0000 (08:29 -0800)
committerLen Ovens <len@ovenwerks.net>
Mon, 7 Nov 2016 16:29:34 +0000 (08:29 -0800)
gtk2_ardour/editor_routes.cc
gtk2_ardour/mixer_ui.cc

index 89732537f703dc19b63ad83dd0a72cb92720adad..075242459ede71396019b392a49fadb0c4df08f5 100644 (file)
@@ -1067,6 +1067,7 @@ EditorRoutes::sync_presentation_info_from_treeview ()
        if (change) {
                DEBUG_TRACE (DEBUG::OrderKeys, "... notify PI change from editor GUI\n");
                _session->notify_presentation_info_change ();
+               _session->set_dirty();
        }
 }
 
index e8b88c2f938fe64b1dfad4c0d572e535f53f4d3d..68121ab8632ea6ab946ee2e0df6868b14b0cd1c5 100644 (file)
@@ -757,6 +757,7 @@ Mixer_UI::sync_presentation_info_from_treeview ()
        if (change) {
                DEBUG_TRACE (DEBUG::OrderKeys, "... notify PI change from mixer GUI\n");
                _session->notify_presentation_info_change ();
+               _session->set_dirty();
        }
 }