diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-15 15:57:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-15 15:57:00 +0100 |
| commit | 5290a6bee8c57f243267f3c40c4e53ddf2efb4ea (patch) | |
| tree | 50a906b2b24824a081f29c59ac4fc245f6ee3137 /src/wx/dcp_panel.cc | |
| parent | 911200156bd79a4d9a193329984b23dacf1d5acd (diff) | |
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.
Diffstat (limited to 'src/wx/dcp_panel.cc')
| -rw-r--r-- | src/wx/dcp_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
