From a0da0aeab948985fad19eee94ecd9d3f65ebc57d Mon Sep 17 00:00:00 2001 From: GZharun Date: Tue, 20 Jan 2015 13:56:32 +0200 Subject: [PATCH] [Summary] Track header selection will make session dirty --- gtk2_ardour/editor_selection.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc index c2adc2ceb2..b7cd131a3b 100644 --- a/gtk2_ardour/editor_selection.cc +++ b/gtk2_ardour/editor_selection.cc @@ -1112,6 +1112,9 @@ Editor::track_selection_changed () // check if we should enable track selectin sensitive actions ActionManager::set_sensitive (ActionManager::track_selection_sensitive_actions, track_selected() ); + /* make session dirty */ + set_session_dirty (); + /* notify control protocols */ ControlProtocol::TrackSelectionChanged (routes); }