summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-08-11 14:44:12 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-08-11 14:44:12 -0500
commitb41df8e120b4b170fc92c8971c2e852a7dacd1d6 (patch)
tree09db27b08e2d75f951921689fd6920d8eb8a5166 /gtk2_ardour/route_time_axis.cc
parentbf034f48cefc5bca164a3358151bfbce07a4857b (diff)
shuffle packing order to accomodate midi controls
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 5fa2e6989e..49f5d0d6c1 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -200,7 +200,7 @@ RouteTimeAxisView::set_route (boost::shared_ptr<Route> rt)
Gtk::VBox *mtrbox = manage(new Gtk::VBox());
mtrbox->pack_start(gm.get_level_meter(), false, false, 2);
- controls_hbox.pack_end(*mtrbox, false, false, 4);
+ top_hbox.pack_end(*mtrbox, false, false, 4);
mtrbox->show();
_route->meter_change.connect (*this, invalidator (*this), bind (&RouteTimeAxisView::meter_changed, this), gui_context());