From 5a6ddb034e998a84657210e0784101783a8a7d8b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 28 Jan 2017 11:46:04 +0100 Subject: [PATCH] ensure mixer shows a recently selected strip This doesn't guarantee that is it the MOST recently selected strip --- gtk2_ardour/mixer_ui.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 5192a90abc..05c2a51f62 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -849,6 +849,10 @@ Mixer_UI::sync_treeview_from_presentation_info (PropertyChange const & what_chan _selection.remove (*i); } } + + if (!_selection.axes.empty()) { + move_stripable_into_view ((*_selection.axes.begin())->stripable()); + } } redisplay_track_list ();