summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-01 01:59:16 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-01 01:59:16 +0100
commit085943d11efb3916af8f2f50d625d39f7074e526 (patch)
treed021176fe7910f098c787120f9481cb3d69d24c6 /src/wx/kdm_dialog.cc
parent0073b9b1dd9f916f543012a5f53d37882960527d (diff)
parent6ab213e56c8871c407b840d70a7fe997ddaef60a (diff)
Merge branch '2646-short-screen'
Add a variation of the KDM output panel for "short" (i.e. low-height) screens DoM #2646.
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc4
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"));