From a83f28231fb963b51ce9ed223d5d6e64793d69fd Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 14 Mar 2025 23:29:38 +0100 Subject: [PATCH] Show properties of most recently selected strip --- gtk2_ardour/selection_properties_box.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/selection_properties_box.cc b/gtk2_ardour/selection_properties_box.cc index c95c04164c..3d7d50fb08 100644 --- a/gtk2_ardour/selection_properties_box.cc +++ b/gtk2_ardour/selection_properties_box.cc @@ -148,7 +148,7 @@ SelectionPropertiesBox::selection_changed () bool show_route_properties = false; if (!selection.tracks.empty ()) { - TimeAxisView *tav = selection.tracks.front (); + TimeAxisView *tav = selection.tracks.back (); //the LAST selected stripable is the clicked one. see selection.cc line ~92 RouteTimeAxisView *rtav = dynamic_cast(tav); if (rtav) { _route_prop_box->set_route (rtav->route());