From 872f6869a7cc6bd1bd0aba5ceb8f9da1c555efcd Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 23 Jan 2026 16:03:14 +0100 Subject: [PATCH] NO-OP: set spacing only once --- gtk2_ardour/mixer_strip.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index 71bcf2ac24..e5c748acf6 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -309,7 +309,7 @@ MixerStrip::init () global_vpacker.set_no_show_all (); global_vpacker.set_border_width (1); - global_vpacker.set_spacing (0); + global_vpacker.set_spacing (2); width_button.set_name ("mixer strip button"); hide_button.set_name ("mixer strip button"); @@ -332,7 +332,6 @@ MixerStrip::init () number_label.set_tweaks (ArdourButton::OccasionalText); set_tooltip (&number_label, _("Double-click to edit the route color.\nRight-click to show the route operations context menu.")); - global_vpacker.set_spacing (2); global_vpacker.pack_start (width_hide_box, Gtk::PACK_SHRINK); global_vpacker.pack_start (name_button, Gtk::PACK_SHRINK); global_vpacker.pack_start (input_button_box, Gtk::PACK_SHRINK);