X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fcinema_dialog.cc;fp=src%2Fwx%2Fcinema_dialog.cc;h=2c0b0b4a4f5b5fe90c7311b261301d8e403f44a6;hp=9e3b1507df7cea016bcb3f5f3f265ad6eefcaed3;hb=373f010a7f04add1f49169cbaa60cb7ae5f508d4;hpb=048f9b6b5569f03d1342a04f75c83a2bad340996 diff --git a/src/wx/cinema_dialog.cc b/src/wx/cinema_dialog.cc index 9e3b1507d..2c0b0b4a4 100644 --- a/src/wx/cinema_dialog.cc +++ b/src/wx/cinema_dialog.cc @@ -28,11 +28,11 @@ CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, string wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6); table->AddGrowableCol (1, 1); - add_label_to_sizer (table, this, "Name"); + add_label_to_sizer (table, this, "Name", true); _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (256, -1)); table->Add (_name, 1, wxEXPAND); - add_label_to_sizer (table, this, "Email address for KDM delivery"); + add_label_to_sizer (table, this, "Email address for KDM delivery", true); _email = new wxTextCtrl (this, wxID_ANY, std_to_wx (email), wxDefaultPosition, wxSize (256, -1)); table->Add (_email, 1, wxEXPAND);