diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-27 19:31:05 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-27 19:31:05 +0200 |
| commit | 1e12f5d66728ba51749fd21c52e1898a41b9a5b3 (patch) | |
| tree | fd20384fcd7fa634b950f0c9cc1f464b82ead332 /src/wx/update_dialog.cc | |
| parent | 3ed79bd632560efcc3a0f3992eeb9868b315be58 (diff) | |
Fix some missing spaces in the update dialog.
Diffstat (limited to 'src/wx/update_dialog.cc')
| -rw-r--r-- | src/wx/update_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/update_dialog.cc b/src/wx/update_dialog.cc index 0a7319704..627a66a22 100644 --- a/src/wx/update_dialog.cc +++ b/src/wx/update_dialog.cc @@ -50,13 +50,13 @@ UpdateDialog::UpdateDialog (wxWindow* parent, optional<string> stable, optional< auto table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); if (stable) { - add_label_to_sizer (table, this, _("Stable version ") + std_to_wx(stable.get()), true, 0, wxALIGN_CENTER_VERTICAL); + add_label_to_sizer(table, this, wxString::Format(_("Stable version %s"), std_to_wx(stable.get())), true, 0, wxALIGN_CENTER_VERTICAL); auto h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/download", "https://dcpomatic.com/download"); table->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_DIALOG_BORDER); } if (test) { - add_label_to_sizer (table, this, _("Test version ") + std_to_wx(test.get()), true, 0, wxALIGN_CENTER_VERTICAL); + add_label_to_sizer(table, this, wxString::Format(_("Test version %s"), std_to_wx(test.get())), true, 0, wxALIGN_CENTER_VERTICAL); auto h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/test-download", "https://dcpomatic.com/test-download"); table->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_DIALOG_BORDER); } |
