From 75187f64692a7c616fb42ed0426df9a69195ec08 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 22 Jul 2020 23:18:17 +0200 Subject: [PATCH] Update mixer-strip group button height On tracks the bottom row of each mixer-strip has three buttons. Two are provided by the gain-meter (automation, meter-point), and the size of those is set in GainMeterBase (current 15x15px). The track-group button size was left unspecified. The master-bus only has the gain-meter buttons, and hence was less tall compared to tracks. --- gtk2_ardour/mixer_strip.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index 783ab20e15..b5349b7899 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -278,6 +278,9 @@ MixerStrip::init () set_tooltip (&group_button, _("Mix group")); group_button.set_name ("mixer strip button"); + Gtk::Requisition mpb_size = gpm.meter_point_button.size_request(); + group_button.set_size_request (mpb_size.width, mpb_size.height); + _comment_button.set_name (X_("mixer strip button")); _comment_button.set_text_ellipsize (Pango::ELLIPSIZE_END); _comment_button.signal_clicked.connect (sigc::mem_fun (*this, &RouteUI::toggle_comment_editor));