summaryrefslogtreecommitdiff
path: root/src/wx/gain_calculator_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-10-27 22:41:10 +0100
committerCarl Hetherington <cth@carlh.net>2025-10-27 22:41:10 +0100
commitb7f00e2b4c62232ce98e96c2e290d52aedeb2eb7 (patch)
treeb81bba2936b64c58c78489ea35025c64d52a625c /src/wx/gain_calculator_dialog.cc
parent4f65e645d2388c538258ef51c65182c6d0a674d8 (diff)
Tweak wording of gain calculator dialogue.
Diffstat (limited to 'src/wx/gain_calculator_dialog.cc')
-rw-r--r--src/wx/gain_calculator_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/gain_calculator_dialog.cc b/src/wx/gain_calculator_dialog.cc
index b72e0bd79..fec90a3bc 100644
--- a/src/wx/gain_calculator_dialog.cc
+++ b/src/wx/gain_calculator_dialog.cc
@@ -33,10 +33,10 @@ GainCalculatorDialog::GainCalculatorDialog(wxWindow* parent)
add(_("Sound processor"), true);
_processor = add(new wxChoice(this, wxID_ANY));
- add(_("I want to play this back at fader"), true);
+ add(_("I want to play this at fader"), true);
_wanted = add(new wxTextCtrl(this, wxID_ANY, {}, wxDefaultPosition, wxDefaultSize, 0, wxTextValidator(wxFILTER_NUMERIC)));
- add(_("But I have to use fader"), true);
+ add(_("But it only sounds correct at fader"), true);
_actual = add(new wxTextCtrl(this, wxID_ANY, {}, wxDefaultPosition, wxDefaultSize, 0, wxTextValidator(wxFILTER_NUMERIC)));
for (auto i: CinemaSoundProcessor::all()) {