diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timeline_audio_content_view.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/timeline_audio_content_view.cc b/src/wx/timeline_audio_content_view.cc index 330196a97..3ae0fdb45 100644 --- a/src/wx/timeline_audio_content_view.cc +++ b/src/wx/timeline_audio_content_view.cc @@ -62,6 +62,12 @@ TimelineAudioContentView::label () const s += wxString::Format (" %.1fdB", ac->gain()); } + if (ac->delay() > 0) { + s += wxString::Format (_(" delayed by %dms"), ac->delay()); + } else if (ac->delay() < 0) { + s += wxString::Format (_(" advanced by %dms"), -ac->delay()); + } + list<int> mapped = ac->mapping().mapped_output_channels(); if (!mapped.empty ()) { s += " → "; |
