X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fserver_dialog.cc;fp=src%2Fwx%2Fserver_dialog.cc;h=33cb392bfe52886f2878ebfd33ad001022483f58;hp=7a9cf95c7a98eeb2f13aa929c0907bc0a634ad08;hb=89115db77729a2c99f1a09ff6a461720e16f889e;hpb=f8ad440cf187c517b7800f3efdfc0954025c4422 diff --git a/src/wx/server_dialog.cc b/src/wx/server_dialog.cc index 7a9cf95c7..33cb392bf 100644 --- a/src/wx/server_dialog.cc +++ b/src/wx/server_dialog.cc @@ -30,14 +30,14 @@ ServerDialog::ServerDialog (wxWindow* parent, ServerDescription* server) _server = new ServerDescription (wx_to_std (N_("localhost")), 1); } - wxFlexGridSizer* table = new wxFlexGridSizer (2, 4, 4); + wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_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);