summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-12 21:04:52 +0200
committerCarl Hetherington <cth@carlh.net>2021-06-12 21:04:52 +0200
commit5ccfb74647db6917c054d6d67f91ed5a74e397ba (patch)
tree47b28d0f31d5d3c0aa7351f0e5125d74744063d1 /src/wx/kdm_dialog.cc
parent58f73422b75059b5e12e229da14c885076956153 (diff)
Offer all KDM types no matter what standard is in use.
A user reports that on a Barco system they needed to use a "DCI Specific" KDM with an Interop DCP.
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index c44321ac5..9b6b0927c 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -108,7 +108,7 @@ KDMDialog::KDMDialog (wxWindow* parent, shared_ptr<const Film> film)
h = new StaticText (this, _("Output"));
h->SetFont (subheading_font);
right->Add (h, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
- _output = new KDMOutputPanel (this, film->interop ());
+ _output = new KDMOutputPanel (this);
right->Add (_output, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
_make = new Button (this, _("Make KDMs"));