diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-06 00:12:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-06 01:11:28 +0200 |
| commit | 3ee5431c7e270d7bf706fcf7530a6eb2c78480c3 (patch) | |
| tree | 6fa4454a82b256265c7b3a8d39a9b57e0342a325 /src/wx/send_i18n_dialog.cc | |
| parent | 4f652387cbeeda9b7b8ace71e047c450acf5c871 (diff) | |
Fix assorted GTK3-related alignment problems.
Diffstat (limited to 'src/wx/send_i18n_dialog.cc')
| -rw-r--r-- | src/wx/send_i18n_dialog.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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); |
