diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-28 23:25:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-01 01:54:38 +0100 |
| commit | 2a569aa08d8827a9a14dcd6db2c4ea1bbc8a32fd (patch) | |
| tree | 74731487d34451c9811949163c669da08e3cdc3d /src/wx/kdm_dialog.cc | |
| parent | 0073b9b1dd9f916f543012a5f53d37882960527d (diff) | |
Split KDMOutputPanel into TallKDMOutputPanel and a base.
The TallKDMOutputPanel is just responsible for layout out the controls.
Diffstat (limited to 'src/wx/kdm_dialog.cc')
| -rw-r--r-- | src/wx/kdm_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc index 1a9c564d4..f96c89c98 100644 --- a/src/wx/kdm_dialog.cc +++ b/src/wx/kdm_dialog.cc @@ -24,10 +24,10 @@ #include "invalid_certificate_period_dialog.h" #include "kdm_cpl_panel.h" #include "kdm_dialog.h" -#include "kdm_output_panel.h" #include "kdm_timing_panel.h" #include "screens_panel.h" #include "static_text.h" +#include "tall_kdm_output_panel.h" #include "wx_util.h" #include "wx_variant.h" #include "lib/cinema.h" @@ -113,7 +113,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_SUBHEADING_TOP_PAD); - _output = new KDMOutputPanel (this); + _output = new TallKDMOutputPanel(this); right->Add (_output, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP); _make = new Button (this, _("Make KDMs")); |
