diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-06 18:40:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-06 18:40:22 +0100 |
| commit | 820e2b300b09c586e987a9761b102e2b51374cfd (patch) | |
| tree | 993e9aa7c38abcadceaa334a2515a35f7ca6a098 /src/wx/server_dialog.cc | |
| parent | e683d5d750b2532806594cfafbd6e732b3004a99 (diff) | |
Right align left-hand-size labels and suffix them with a colon on OS X.
Diffstat (limited to 'src/wx/server_dialog.cc')
| -rw-r--r-- | src/wx/server_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/server_dialog.cc b/src/wx/server_dialog.cc index 80e4232af..30e3c0f83 100644 --- a/src/wx/server_dialog.cc +++ b/src/wx/server_dialog.cc @@ -33,11 +33,11 @@ ServerDialog::ServerDialog (wxWindow* parent, ServerDescription* server) wxFlexGridSizer* table = new wxFlexGridSizer (2, DVDOMATIC_SIZER_X_GAP, DVDOMATIC_SIZER_Y_GAP); table->AddGrowableCol (1, 1); - add_label_to_sizer (table, this, _("Host name or IP address")); + add_label_to_sizer (table, this, _("Host name or IP address"), true); _host = new wxTextCtrl (this, wxID_ANY); table->Add (_host, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Threads to use")); + add_label_to_sizer (table, this, _("Threads to use"), true); _threads = new wxSpinCtrl (this, wxID_ANY); table->Add (_threads, 1, wxEXPAND); |
