From 6d695676768a300378321afee80bd69f27934fa8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 3 Jul 2013 13:19:35 +0200 Subject: [PATCH] fix track-header: show meters the first time 'round. --- gtk2_ardour/route_time_axis.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index c2922e4f69..e167f7a456 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -190,6 +190,7 @@ RouteTimeAxisView::set_route (boost::shared_ptr rt) Gtk::VBox *mtrbox = manage(new Gtk::VBox()); mtrbox->pack_start(gm.get_level_meter(), false, false, 2); controls_hbox.pack_start(*mtrbox, false, false, 4); + mtrbox->show(); _route->meter_change.connect (*this, invalidator (*this), bind (&RouteTimeAxisView::meter_changed, this), gui_context()); _route->input()->changed.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::io_changed, this, _1, _2), gui_context());