Fix thinko in eaedff2a7877fa4b560e0c65ac13ed3dad9437e5
authorCarl Hetherington <cth@carlh.net>
Wed, 5 Aug 2020 09:47:18 +0000 (11:47 +0200)
committerCarl Hetherington <cth@carlh.net>
Wed, 5 Aug 2020 09:47:18 +0000 (11:47 +0200)
src/wx/kdm_output_panel.cc

index db5bb1354f8a9ee3d79cd64825461c9e2c0ace80..6eb14c42593b00b302658ee054dce233ff486069 100644 (file)
@@ -117,11 +117,11 @@ KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop)
 
        wxSizer* write_options = new wxBoxSizer(wxVERTICAL);
        _write_flat = new wxRadioButton (this, wxID_ANY, _("Write all KDMs to the same folder"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP);
 
        wxSizer* write_options = new wxBoxSizer(wxVERTICAL);
        _write_flat = new wxRadioButton (this, wxID_ANY, _("Write all KDMs to the same folder"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP);
-       write_options->Add (_write_flat, wxTOP | wxBOTTOM | DCPOMATIC_BUTTON_STACK_GAP);
+       write_options->Add (_write_flat, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
        _write_folder = new wxRadioButton (this, wxID_ANY, _("Write a folder for each cinema's KDMs"));
        _write_folder = new wxRadioButton (this, wxID_ANY, _("Write a folder for each cinema's KDMs"));
-       write_options->Add (_write_folder, wxTOP | wxBOTTOM | DCPOMATIC_BUTTON_STACK_GAP);
+       write_options->Add (_write_folder, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
        _write_zip = new wxRadioButton (this, wxID_ANY, _("Write a ZIP file for each cinema's KDMs"));
        _write_zip = new wxRadioButton (this, wxID_ANY, _("Write a ZIP file for each cinema's KDMs"));
-       write_options->Add (_write_zip, wxTOP | wxBOTTOM | DCPOMATIC_BUTTON_STACK_GAP);
+       write_options->Add (_write_zip, 1, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
        table->AddSpacer (0);
        table->Add (write_options);
 
        table->AddSpacer (0);
        table->Add (write_options);