diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-03 02:02:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-04 20:48:35 +0200 |
| commit | 4b8b74ae8ae721f2fbf317f1d7ce5be6048ae1b0 (patch) | |
| tree | 657138b1d1254363719f674230bb41b26d2cd311 /src/wx/isdcf_metadata_dialog.cc | |
| parent | 8d9e73b753ed51067d93aa377bb24400ff22936e (diff) | |
Move chain to the Interop/SMPTE metadata.
Diffstat (limited to 'src/wx/isdcf_metadata_dialog.cc')
| -rw-r--r-- | src/wx/isdcf_metadata_dialog.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/wx/isdcf_metadata_dialog.cc b/src/wx/isdcf_metadata_dialog.cc index 4faf88ee6..ea390c1bb 100644 --- a/src/wx/isdcf_metadata_dialog.cc +++ b/src/wx/isdcf_metadata_dialog.cc @@ -35,13 +35,9 @@ using std::shared_ptr; ISDCFMetadataDialog::ISDCFMetadataDialog (wxWindow* parent, ISDCFMetadata dm) : TableDialog (parent, _("ISDCF name"), 2, 1, true) { - add (_("Chain"), true); - _chain = add (new wxTextCtrl (this, wxID_ANY)); - add (_("Mastered luminance (e.g. 14fl)"), true); _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY)); - _chain->SetValue (std_to_wx (dm.chain)); _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance)); layout (); @@ -53,7 +49,6 @@ ISDCFMetadataDialog::isdcf_metadata () const { ISDCFMetadata dm; - dm.chain = wx_to_std (_chain->GetValue ()); dm.mastered_luminance = wx_to_std (_mastered_luminance->GetValue ()); return dm; |
