summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 22fd1cc14..dece24568 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -1075,7 +1075,12 @@ FilmEditor::setup_audio_details ()
_audio->SetLabel (wxT (""));
} else {
stringstream s;
- s << _film->audio_stream()->channels () << " channels, " << _film->audio_stream()->sample_rate() << "Hz";
+ if (_film->audio_stream()->channels() == 1) {
+ s << "1 channel";
+ } else {
+ s << _film->audio_stream()->channels () << " channels";
+ }
+ s << ", " << _film->audio_stream()->sample_rate() << "Hz";
_audio->SetLabel (std_to_wx (s.str ()));
}
}