summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-08 23:38:04 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-08 23:38:04 +0100
commitb9b9cd71b6390052474d5812ab5b7540f16ac5a2 (patch)
treed7b44522e0f4fd459a9f8284eb2ecd73756e225b
parentf1fab174c7db85a1641bca2830ea75829982723f (diff)
Fix build and ChangeLog.
-rw-r--r--ChangeLog5
-rw-r--r--src/wx/film_editor.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 37605627a..cfd1ac5fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}