diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | src/wx/film_editor.cc | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2013-07-08 Carl Hetherington <cth@carlh.net> + + * Add option to pad sound so that silent channels + can be added. + 2013-07-06 Carl Hetherington <cth@carlh.net> * Various tweaks to layout, trying to make diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index b9ad12d64..a54b412b3 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -405,7 +405,7 @@ FilmEditor::make_audio_panel () wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); _minimum_audio_channels = new wxSpinCtrl (_audio_panel); s->Add (_minimum_audio_channels, 1); - add_label_to_sizer (s, _audio_panel, _("channels")); + add_label_to_sizer (s, _audio_panel, _("channels"), false); grid->Add (s); } |
