remove debug output
[ardour.git] / gtk2_ardour / add_route_dialog.cc
index 53fbe613c67c5272df785be9d874152b138d6547..0a146470022cb70489bd39c080cd7811685f906d 100644 (file)
@@ -323,7 +323,7 @@ void
 AddRouteDialog::refill_track_modes ()
 {
        vector<string> s;
-       
+
        s.push_back (_("Normal"));
 
        if (!ARDOUR::Profile->get_sae ()) {
@@ -392,7 +392,7 @@ AddRouteDialog::channels ()
                ret.set (DataType::MIDI, 1);
                break;
        }
-               
+
        return ret;
 }
 
@@ -531,11 +531,6 @@ AddRouteDialog::group_changed ()
 {
        if (_session && route_group_combo.get_active_text () == _("New Group...")) {
                RouteGroup* g = new RouteGroup (*_session, "");
-
-               PropertyList plist;
-               plist.add (Properties::active, true);
-               g->apply_changes (plist);
-
                RouteGroupDialog d (g, true);
 
                if (d.do_run ()) {