From 9f2aba1451dd73fd95deebec7ede3a8263b27103 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 27 Sep 2015 21:45:40 +0200 Subject: [PATCH] mixer-strip name context-menu cleanup patch thanks to chaot4 --- gtk2_ardour/mixer_strip.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index 7e374f1c5a..57501062a4 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -1586,8 +1586,6 @@ MixerStrip::build_route_ops_menu () items.push_back (MenuElem (_("Remote Control ID..."), sigc::mem_fun (*this, &RouteUI::open_remote_control_id_dialog))); } - items.push_back (SeparatorElem()); - if (_route) { /* note that this relies on selection being shared across editor and mixer (or global to the backend, in the future), which is the only @@ -1601,6 +1599,7 @@ MixerStrip::build_route_ops_menu () selection.set (rtav); } + items.push_front (SeparatorElem()); items.push_front (MenuElem (_("Remove"), sigc::mem_fun(PublicEditor::instance(), &PublicEditor::remove_tracks))); } }