From 363b646de96d2fdf05ed3b899376f5726cf67f4e Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 1 Jul 2013 22:12:47 +0200 Subject: [PATCH] add margin around meters in editor track header --- gtk2_ardour/route_time_axis.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index 174cceeede..6a992db83c 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -182,7 +182,7 @@ RouteTimeAxisView::set_route (boost::shared_ptr rt) gm.set_fader_name ("AudioBusFader"); } - controls_hbox.pack_start(gm.get_level_meter(), false, false); + controls_hbox.pack_start(gm.get_level_meter(), false, false, 3); _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()); _route->output()->changed.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::io_changed, this, _1, _2), gui_context());