From 2a569aa08d8827a9a14dcd6db2c4ea1bbc8a32fd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 28 Dec 2024 23:25:09 +0100 Subject: Split KDMOutputPanel into TallKDMOutputPanel and a base. The TallKDMOutputPanel is just responsible for layout out the controls. --- src/wx/kdm_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wx/kdm_dialog.cc') 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 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")); -- cgit v1.2.3