diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-01-17 01:10:12 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-01-17 01:10:12 +0000 |
| commit | cbbcccac8a8c8a6374b5bdad5b1f1c909847170b (patch) | |
| tree | 3b12d0143582c66027f949e03c3ec38f49287eb5 | |
| parent | b90793b0bd6d5f02b85cc8de0f87f713e9ffce61 (diff) | |
Fix layout with long translations.
| -rw-r--r-- | src/wx/audio_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc index 707d9ab02..a79c0c4b0 100644 --- a/src/wx/audio_panel.cc +++ b/src/wx/audio_panel.cc @@ -54,7 +54,7 @@ AudioPanel::AudioPanel (ContentPanel* p) int r = 0; _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP")); - grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2)); + grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 3)); ++r; _show = new wxButton (this, wxID_ANY, _("Show graph of audio levels...")); |
