From 5290a6bee8c57f243267f3c40c4e53ddf2efb4ea Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 15 Feb 2026 15:57:00 +0100 Subject: Expand channels so it's always big enough... ...even if we start out with only 14/16 and then later start showing the longer labels. --- src/wx/dcp_panel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 637e56fc5..b0c4bd88d 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -1020,7 +1020,7 @@ DCPPanel::add_audio_panel_to_grid() int r = 0; add_label_to_sizer(_audio_grid, _channels_label, true, wxGBPosition(r, 0)); - _audio_grid->Add(_audio_channels, wxGBPosition(r, 1)); + _audio_grid->Add(_audio_channels, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND); ++r; if (_audio_sample_rate_label && _audio_sample_rate) { -- cgit v1.2.3