diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-09-04 21:57:49 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-09-04 23:16:55 +0200 |
| commit | 323146ee516476d76de5b56fdbc08747bf832825 (patch) | |
| tree | 5a0ce013fbe13008ec011d56e648c2f484d4f36d /src/wx/dkdm_output_panel.cc | |
| parent | b09d636b86252ad5beda782edc613fa3449cd7b0 (diff) | |
Revert "Remove timing selection from DKDM dialog." (#3017).
This reverts commit ce01ccc1aa871d299ad96683055c4e06a355efb9.
Turns out there are quite a few people and pieces of software who care
about this.
Diffstat (limited to 'src/wx/dkdm_output_panel.cc')
| -rw-r--r-- | src/wx/dkdm_output_panel.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/dkdm_output_panel.cc b/src/wx/dkdm_output_panel.cc index 643987f26..3c14d1643 100644 --- a/src/wx/dkdm_output_panel.cc +++ b/src/wx/dkdm_output_panel.cc @@ -67,10 +67,14 @@ DKDMOutputPanel::DKDMOutputPanel(wxWindow* parent) titles['f'] = wx_to_std(_("film name")); titles['r'] = wx_to_std(_("recipient name")); titles['i'] = wx_to_std(_("CPL ID")); + titles['b'] = wx_to_std(_("from date/time")); + titles['e'] = wx_to_std(_("to date/time")); dcp::NameFormat::Map ex; ex['f'] = "Bambi"; ex['r'] = "Pathé"; ex['i'] = "1234-5678"; + ex['b'] = "2012/03/15 12:30"; + ex['e'] = "2012/03/22 02:30"; _filename_format = new NameFormatEditor(this, Config::instance()->dkdm_filename_format(), titles, ex, ".xml"); table->Add(_filename_format->panel(), 1, wxEXPAND); |
