skip LV2 ports on GUI according to port-properties: notOnGUI and reportsLatency
[ardour.git] / gtk2_ardour / mixer_ui.cc
index 10345428b1c00c794d6d6d2d0a728c29c54fc70a..e3a97daa6f98431e465a29b1f0a192b24536504f 100644 (file)
@@ -83,6 +83,7 @@ Mixer_UI::instance ()
 
 Mixer_UI::Mixer_UI ()
        : Window (Gtk::WINDOW_TOPLEVEL)
+       , VisibilityTracker (*((Gtk::Window*) this))
        , _visible (false)
        , no_track_list_redisplay (false)
        , in_group_row_change (false)
@@ -321,7 +322,7 @@ Mixer_UI::add_strips (RouteList& routes)
                for (RouteList::iterator x = routes.begin(); x != routes.end(); ++x) {
                        boost::shared_ptr<Route> route = (*x);
                        
-                       if (route->is_hidden()) {
+                       if (route->is_auditioner()) {
                                continue;
                        }