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.
This commit is contained in:
Robin Gareus 2020-07-22 23:18:17 +02:00
parent 5a41ca8fdf
commit 75187f6469
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 3 additions and 0 deletions

View File

@ -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));