summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-28 23:25:09 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-01 01:54:38 +0100
commit2a569aa08d8827a9a14dcd6db2c4ea1bbc8a32fd (patch)
tree74731487d34451c9811949163c669da08e3cdc3d /src/tools
parent0073b9b1dd9f916f543012a5f53d37882960527d (diff)
Split KDMOutputPanel into TallKDMOutputPanel and a base.
The TallKDMOutputPanel is just responsible for layout out the controls.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_kdm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc
index 64c7ca7e3..8ac4b997a 100644
--- a/src/tools/dcpomatic_kdm.cc
+++ b/src/tools/dcpomatic_kdm.cc
@@ -28,13 +28,13 @@
#include "wx/file_picker_ctrl.h"
#include "wx/full_config_dialog.h"
#include "wx/job_view_dialog.h"
-#include "wx/kdm_output_panel.h"
#include "wx/kdm_timing_panel.h"
#include "wx/nag_dialog.h"
#include "wx/new_dkdm_folder_dialog.h"
#include "wx/report_problem_dialog.h"
#include "wx/screens_panel.h"
#include "wx/static_text.h"
+#include "wx/tall_kdm_output_panel.h"
#include "wx/wx_signal_manager.h"
#include "wx/wx_util.h"
#include "wx/wx_variant.h"
@@ -225,7 +225,7 @@ public:
h = new StaticText (overall_panel, _("Output"));
h->SetFont (subheading_font);
right->Add(h, 0, wxTOP, DCPOMATIC_SUBHEADING_TOP_PAD);
- _output = new KDMOutputPanel (overall_panel);
+ _output = new TallKDMOutputPanel(overall_panel);
right->Add (_output, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
_create = new Button (overall_panel, _("Create KDMs"));