From e7cc096d19cb56bea0183335d2af3c5381c0dcf1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 11 Dec 2023 15:54:30 +0100 Subject: [PATCH] Fix location list order (amend 7ee5a3f24) --- gtk2_ardour/location_ui.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/location_ui.cc b/gtk2_ardour/location_ui.cc index f49c678706..fcdc1c1bd4 100644 --- a/gtk2_ardour/location_ui.cc +++ b/gtk2_ardour/location_ui.cc @@ -1001,6 +1001,9 @@ LocationUI::start_changed (Location *location) /* Skip locations in the session list that aren't of the right type */ continue; } + if (location->is_auto_loop() || location-> is_auto_punch()) { + continue; + } if (l == location) { box.reorder_child (*r, pos); break;