From 7fcc048583be48debb4dd9b593b9f8c377f834c9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 17 Mar 2025 17:22:13 +0100 Subject: [PATCH] Show LAN button on master-bus (regardless of show_all) --- gtk2_ardour/mixer_strip.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index c6eda847e7..793c0902f6 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -622,8 +622,12 @@ MixerStrip::set_route (std::shared_ptr rt) _loudess_analysis_button->show (); _volume_controller->show (); + if (Config->get_use_master_volume ()) { + master_volume_table.show (); + } #ifdef MIXBUS } else if (!route()->is_master()) { + /* mixbus has/had a show_all, empty table still adds some pixel padding */ master_volume_table.hide (); #endif }