Skip to content

Commit

Permalink
Re-order editor sidebar: prioritize "Tracks & Busses"
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Aug 12, 2019
1 parent bf2ac2e commit f4897bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtk2_ardour/editor.cc
Expand Up @@ -663,9 +663,9 @@ Editor::Editor ()
Location::end_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context());
Location::changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context());

add_notebook_page (_("Tracks & Busses"), _routes->widget ());
add_notebook_page (_("Sources"), _sources->widget ());
add_notebook_page (_("Regions"), _regions->widget ());
add_notebook_page (_("Tracks & Busses"), _routes->widget ());
add_notebook_page (_("Snapshots"), _snapshots->widget ());
add_notebook_page (_("Track & Bus Groups"), _route_groups->widget ());
add_notebook_page (_("Ranges & Marks"), _locations->widget ());
Expand Down

0 comments on commit f4897bb

Please sign in to comment.