diff options
Diffstat (limited to 'src/wx/dci_metadata_dialog.cc')
| -rw-r--r-- | src/wx/dci_metadata_dialog.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/wx/dci_metadata_dialog.cc b/src/wx/dci_metadata_dialog.cc index ced4d5c8f..9c124ed74 100644 --- a/src/wx/dci_metadata_dialog.cc +++ b/src/wx/dci_metadata_dialog.cc @@ -30,31 +30,31 @@ DCIMetadataDialog::DCIMetadataDialog (wxWindow* parent, DCIMetadata dm) wxFlexGridSizer* table = new wxFlexGridSizer (2, DVDOMATIC_SIZER_X_GAP, DVDOMATIC_SIZER_Y_GAP); table->AddGrowableCol (1, 1); - add_label_to_sizer (table, this, _("Audio Language (e.g. EN)")); + add_label_to_sizer (table, this, _("Audio Language (e.g. EN)"), true); _audio_language = new wxTextCtrl (this, wxID_ANY); table->Add (_audio_language, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Subtitle Language (e.g. FR)")); + add_label_to_sizer (table, this, _("Subtitle Language (e.g. FR)"), true); _subtitle_language = new wxTextCtrl (this, wxID_ANY); table->Add (_subtitle_language, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Territory (e.g. UK)")); + add_label_to_sizer (table, this, _("Territory (e.g. UK)"), true); _territory = new wxTextCtrl (this, wxID_ANY); table->Add (_territory, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Rating (e.g. 15)")); + add_label_to_sizer (table, this, _("Rating (e.g. 15)"), true); _rating = new wxTextCtrl (this, wxID_ANY); table->Add (_rating, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Studio (e.g. TCF)")); + add_label_to_sizer (table, this, _("Studio (e.g. TCF)"), true); _studio = new wxTextCtrl (this, wxID_ANY); table->Add (_studio, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Facility (e.g. DLA)")); + add_label_to_sizer (table, this, _("Facility (e.g. DLA)"), true); _facility = new wxTextCtrl (this, wxID_ANY); table->Add (_facility, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Package Type (e.g. OV)")); + add_label_to_sizer (table, this, _("Package Type (e.g. OV)"), true); _package_type = new wxTextCtrl (this, wxID_ANY); table->Add (_package_type, 1, wxEXPAND); |
