Add Benno Zwanenburg as a tester.
[dcpomatic.git] / src / wx / self_dkdm_dialog.cc
index 89a35803f22e131a82ea787595ce874267e0394a..4702557e71f7171af0b68509eb93ad2cba56ee22 100644 (file)
@@ -75,7 +75,7 @@ SelfDKDMDialog::SelfDKDMDialog (wxWindow* parent, std::shared_ptr<const Film> fi
        /* Sub-heading: output */
        h = new StaticText (this, _("Output"));
        h->SetFont (subheading_font);
-       vertical->Add (h, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
+       vertical->Add(h, 0, wxTOP, DCPOMATIC_SUBHEADING_TOP_PAD);
 
        _internal = new wxRadioButton (this, wxID_ANY, _("Save to KDM Creator tool's list"));
        vertical->Add (_internal, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP);
@@ -123,6 +123,7 @@ SelfDKDMDialog::SelfDKDMDialog (wxWindow* parent, std::shared_ptr<const Film> fi
 
        _internal->Bind (wxEVT_RADIOBUTTON, bind (&SelfDKDMDialog::dkdm_write_type_changed, this));
        _write_to->Bind (wxEVT_RADIOBUTTON, bind (&SelfDKDMDialog::dkdm_write_type_changed, this));
+       _cpl->Changed.connect(boost::bind(&SelfDKDMDialog::setup_sensitivity, this));
 }