summaryrefslogtreecommitdiff
path: root/src/wx/self_dkdm_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/self_dkdm_dialog.cc')
-rw-r--r--src/wx/self_dkdm_dialog.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/self_dkdm_dialog.cc b/src/wx/self_dkdm_dialog.cc
index ceaeff289..71ea089dd 100644
--- a/src/wx/self_dkdm_dialog.cc
+++ b/src/wx/self_dkdm_dialog.cc
@@ -65,17 +65,17 @@ SelfDKDMDialog::SelfDKDMDialog (wxWindow* parent, std::shared_ptr<const Film> fi
/* Sub-heading: CPL */
wxStaticText* h = new StaticText (this, _("CPL"));
h->SetFont (subheading_font);
- vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
+ vertical->Add (h);
_cpl = new KDMCPLPanel (this, film->cpls ());
vertical->Add (_cpl);
/* Sub-heading: output */
h = new StaticText (this, _("Output"));
h->SetFont (subheading_font);
- vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
+ vertical->Add (h, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
_internal = new wxRadioButton (this, wxID_ANY, _("Save to KDM Creator tool's list"));
- vertical->Add (_internal, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP);
+ vertical->Add (_internal, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP);
wxBoxSizer* w = new wxBoxSizer (wxHORIZONTAL);