summaryrefslogtreecommitdiff
path: root/src/wx/send_i18n_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-10-06 00:25:34 +0200
committerCarl Hetherington <cth@carlh.net>2020-10-06 00:25:34 +0200
commita2cd9a1bb1bfa586cd370ce08afd640d6de1e546 (patch)
treed95522d4660c9e0daa9f3f067385870ad16b09b0 /src/wx/send_i18n_dialog.cc
parent737e4ea410e7059b1e452fee848de394ed14c984 (diff)
fixup! Fix some vertical alignment of labels.alignment
Diffstat (limited to 'src/wx/send_i18n_dialog.cc')
-rw-r--r--src/wx/send_i18n_dialog.cc6
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);