center, don't expand plugin widgets
[ardour.git] / gtk2_ardour / add_route_dialog.cc
index 990a84ba889a40394e09bb6f3cff5600f00d9a9d..53fbe613c67c5272df785be9d874152b138d6547 100644 (file)
@@ -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;
 }