diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-22 00:42:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-22 11:02:24 +0100 |
| commit | 79e711cb33c182e48c1d33d3e9f1df1c41c122a6 (patch) | |
| tree | cf084ab028b28ea7cbd5238707a8a582b60163ef /src/wx/timeline_audio_content_view.cc | |
| parent | 2bb0b230a557c18febab8f88043f197868d986db (diff) | |
Don't insist on writing optional metadata (#1923).
Diffstat (limited to 'src/wx/timeline_audio_content_view.cc')
| -rw-r--r-- | src/wx/timeline_audio_content_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_audio_content_view.cc b/src/wx/timeline_audio_content_view.cc index 03481343c..057ebb944 100644 --- a/src/wx/timeline_audio_content_view.cc +++ b/src/wx/timeline_audio_content_view.cc @@ -70,7 +70,7 @@ TimelineAudioContentView::label () const list<int> mapped = ac->mapping().mapped_output_channels(); if (!mapped.empty ()) { - s += " → "; + s += wxString::FromUTF8(" → "); for (auto i: mapped) { s += std_to_wx(short_audio_channel_name(i)) + ", "; } |
