diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-07 12:04:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-07 12:04:13 +0100 |
| commit | be2e60789c5b4ed99d68625b5f793092afa2cbf4 (patch) | |
| tree | 48de34f1452669d961d87de6e1e1944e2febba25 /src/wx/dcp_panel.cc | |
| parent | 3a1d0e11ef39c9311e72b1341d549f6eb4fd89d2 (diff) | |
Put audio channels in full interface.
Diffstat (limited to 'src/wx/dcp_panel.cc')
| -rw-r--r-- | src/wx/dcp_panel.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 3e42d8b23..12345ace2 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -867,9 +867,14 @@ 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)); - ++r; + _channels_label->Show (full); + _audio_channels->Show (full); + + if (full) { + add_label_to_sizer (_audio_grid, _channels_label, true, wxGBPosition (r, 0)); + _audio_grid->Add (_audio_channels, wxGBPosition (r, 1)); + ++r; + } _processor_label->Show (full); _audio_processor->Show (full); |
