diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-08 00:55:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-08 00:55:41 +0100 |
| commit | 781ba590777fd84f591cc1811ff38260a8e23843 (patch) | |
| tree | ad0f9ee50a616214c6a3f0b0cf8028fe69daa8d4 | |
| parent | 311f4de4bf764886ab5b46e94c750b68943c3ec4 (diff) | |
Fix incorrectly-removed spaces.
| -rw-r--r-- | src/wx/full_config_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index 8ff3ce832..704bce621 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -566,8 +566,8 @@ private: _tms_password = new PasswordEntry(_panel); table->Add(_tms_password->get_panel(), 1, wxEXPAND); - _tms_protocol->Append(_("SCP(for AAM and Doremi)")); - _tms_protocol->Append(_("FTP(for Dolby)")); + _tms_protocol->Append(_("SCP (for AAM and Doremi)")); + _tms_protocol->Append(_("FTP (for Dolby)")); _upload->bind(&TMSPage::upload_changed, this); _tms_protocol->Bind(wxEVT_CHOICE, boost::bind(&TMSPage::tms_protocol_changed, this)); |
