From d14bb2114d0e4cf8d45ea9cc6c1775ba17fa35f3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 5 Jul 2018 00:48:58 +0100 Subject: Mention delay in timeline audio views. --- src/wx/timeline_audio_content_view.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') 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 mapped = ac->mapping().mapped_output_channels(); if (!mapped.empty ()) { s += " → "; -- cgit v1.2.3