diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-27 22:41:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-27 22:41:10 +0100 |
| commit | b7f00e2b4c62232ce98e96c2e290d52aedeb2eb7 (patch) | |
| tree | b81bba2936b64c58c78489ea35025c64d52a625c /src/wx/gain_calculator_dialog.cc | |
| parent | 4f65e645d2388c538258ef51c65182c6d0a674d8 (diff) | |
Tweak wording of gain calculator dialogue.
Diffstat (limited to 'src/wx/gain_calculator_dialog.cc')
| -rw-r--r-- | src/wx/gain_calculator_dialog.cc | 4 |
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()) { |
