From: Carl Hetherington Date: Thu, 15 Apr 2021 21:54:34 +0000 (+0200) Subject: Use the same button text to open the audio plot in both Audio and DCP/Audio. X-Git-Tag: v2.15.141~62 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=2eb5dd39cf73c2fda03a1edb6d4dc878b1ed6931 Use the same button text to open the audio plot in both Audio and DCP/Audio. --- diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 3a4644b42..af410a673 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -840,7 +840,7 @@ DCPPanel::make_audio_panel () _audio_processor = new wxChoice (panel, wxID_ANY); add_audio_processors (); - _show_audio = new Button (panel, _("Show audio...")); + _show_audio = new Button (panel, _("Show graph of audio levels...")); _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this)); _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));