summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-06 20:33:04 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-06 20:33:04 +0100
commit6654f028571db33d1e203ff36f85619d03a9f9fb (patch)
treee4cf16388a8515f699d02e726a178c9f1f64f1f0 /src/wx/kdm_dialog.cc
parent9ec7cefdc6738fc3e03d9bea01a567e64ec03a87 (diff)
Add advanced KDM options button containing switches for forensic marking.
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index 64987a121..be7e25065 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -140,7 +140,8 @@ KDMDialog::make_clicked ()
DCPOMATIC_ASSERT (film);
list<ScreenKDM> screen_kdms = film->make_kdms (
- _screens->screens(), _cpl->cpl(), _timing->from(), _timing->until(), _output->formulation(), true, 0
+ _screens->screens(), _cpl->cpl(), _timing->from(), _timing->until(), _output->formulation(),
+ !_output->forensic_mark_video(), _output->forensic_mark_audio() ? boost::optional<int>() : 0
);
pair<shared_ptr<Job>, int> result = _output->make (screen_kdms, film->name(), _timing, bind (&KDMDialog::confirm_overwrite, this, _1), film->log());