Export of print config enabled as default in save file dialog when exporting to amf and 3mf files

This commit is contained in:
Enrico Turri 2018-04-25 15:31:37 +02:00
parent f23f86d91c
commit 166ee4c2c8

View file

@ -925,6 +925,7 @@ wxWindow* export_option_creator(wxWindow* parent)
wxPanel* panel = new wxPanel(parent, -1);
wxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
wxCheckBox* cbox = new wxCheckBox(panel, wxID_HIGHEST + 1, L("Export print config"));
cbox->SetValue(true);
sizer->AddSpacer(5);
sizer->Add(cbox, 0, wxEXPAND | wxALL | wxALIGN_CENTER_VERTICAL, 5);
panel->SetSizer(sizer);