From 36dd49021f7e612f12cc77c05dbe527ebed6e352 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sun, 27 Jun 2021 21:50:51 -0500 Subject: [PATCH] Playlist UI Tweaks: thinko: selecting a playlist from the menu should be group-aware --- gtk2_ardour/route_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index d1e6b6af2d..fc2b546790 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -2554,7 +2554,7 @@ RouteUI::use_playlist (RadioMenuItem *item, boost::weak_ptr wpl) return; } - select_playlist_matching(wpl); + PublicEditor::instance().mapover_grouped_routes (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::mapped_select_playlist_matching), wpl), this, ARDOUR::Properties::group_select.property_id); }