summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_route_list.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2007-03-09 06:02:35 +0000
committerTaybin Rutkin <taybin@taybin.com>2007-03-09 06:02:35 +0000
commit355c078023fb10078e24ac171e99125c02e08fad (patch)
tree72a7dbad1b508cbb7f10fbdcdff75e8cb26892d3 /gtk2_ardour/editor_route_list.cc
parente497c6ef12b37759f9e82d3a58d5b2d5768154a9 (diff)
Bug fix for displaying routes after a hidden route.
git-svn-id: svn://localhost/ardour2/trunk@1564 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_route_list.cc')
-rw-r--r--gtk2_ardour/editor_route_list.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_route_list.cc b/gtk2_ardour/editor_route_list.cc
index d7f393f836..99031f168c 100644
--- a/gtk2_ardour/editor_route_list.cc
+++ b/gtk2_ardour/editor_route_list.cc
@@ -52,7 +52,7 @@ Editor::handle_new_route (Session::RouteList& routes)
boost::shared_ptr<Route> route = (*x);
if (route->hidden()) {
- return;
+ continue;
}
tv = new AudioTimeAxisView (*this, *session, route, track_canvas);