X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fsend_i18n_dialog.cc;h=9cadc7f4770089e939344fb2c3d679a70870a13d;hb=d1213510dc70e579346e0c4c48a8bce9b5cd95b9;hp=a437c9269954bc653535d5e943191ea46af6d1e7;hpb=5869a4b402e16ea735fb6902fe7604ec4d0ec0d4;p=dcpomatic.git diff --git a/src/wx/send_i18n_dialog.cc b/src/wx/send_i18n_dialog.cc index a437c9269..9cadc7f47 100644 --- a/src/wx/send_i18n_dialog.cc +++ b/src/wx/send_i18n_dialog.cc @@ -34,15 +34,15 @@ SendI18NDialog::SendI18NDialog (wxWindow* parent) wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); table->AddGrowableCol (1, 1); - add_label_to_sizer (table, this, _("Your name"), true); + add_label_to_sizer (table, this, _("Your name"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _name = new wxTextCtrl (this, wxID_ANY); table->Add (_name, 0, wxEXPAND); - add_label_to_sizer (table, this, _("Your email"), true); + add_label_to_sizer (table, this, _("Your email"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _email = new wxTextCtrl (this, wxID_ANY); table->Add (_email, 0, wxEXPAND); - add_label_to_sizer (table, this, _("Language"), true); + add_label_to_sizer (table, this, _("Language"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _language = new wxTextCtrl (this, wxID_ANY); table->Add (_language, 0, wxEXPAND);