summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-04-13 22:24:10 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-04-13 22:24:10 -0400
commitd45620d6365302d3ced17eff9a271ad2c5672632 (patch)
tree22f94bf2a3a6fdc1c0b18cf8caeab2685db80296 /gtk2_ardour/add_route_dialog.cc
parent05cd32a9f01cfac9cc272b0e518ac7268f6e7f2e (diff)
now that there is only 1 effective selection, adjust add-new-track-or-bus option for after/before selection
Diffstat (limited to 'gtk2_ardour/add_route_dialog.cc')
-rw-r--r--gtk2_ardour/add_route_dialog.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/add_route_dialog.cc b/gtk2_ardour/add_route_dialog.cc
index 990a84ba88..53fbe613c6 100644
--- a/gtk2_ardour/add_route_dialog.cc
+++ b/gtk2_ardour/add_route_dialog.cc
@@ -81,8 +81,8 @@ AddRouteDialog::AddRouteDialog ()
track_bus_combo.set_active (0);
insert_at_combo.append_text (_("First"));
- insert_at_combo.append_text (_("After Editor Selection"));
- insert_at_combo.append_text (_("After Mixer Selection"));
+ insert_at_combo.append_text (_("Before Selection"));
+ insert_at_combo.append_text (_("After Selection"));
insert_at_combo.append_text (_("Last"));
insert_at_combo.set_active (1);
@@ -558,10 +558,10 @@ AddRouteDialog::insert_at ()
if (str == _("First")) {
return First;
- } else if (str == _("After Editor Selection")) {
- return EditorSelection;
- } else if (str == _("After Mixer Selection")){
- return MixerSelection;
+ } else if (str == _("After Selection")) {
+ return AfterSelection;
+ } else if (str == _("Before Selection")){
+ return BeforeSelection;
}
return Last;
}