Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2018-04-25 16:31:37 +0300
committerEnrico Turri <enricoturri@seznam.cz>2018-04-25 16:31:37 +0300
commit166ee4c2c87a068263b26c7f43ed309e2078e4ec (patch)
tree0ed937be707542f026e92844f486b71993f7fa55 /xs/src/slic3r/GUI/GUI.cpp
parentf23f86d91c41ee0dd5fed15e31e5c73cae394d9b (diff)
Export of print config enabled as default in save file dialog when exporting to amf and 3mf files
Diffstat (limited to 'xs/src/slic3r/GUI/GUI.cpp')
-rw-r--r--xs/src/slic3r/GUI/GUI.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/slic3r/GUI/GUI.cpp b/xs/src/slic3r/GUI/GUI.cpp
index 06929085c..a9ce04543 100644
--- a/xs/src/slic3r/GUI/GUI.cpp
+++ b/xs/src/slic3r/GUI/GUI.cpp
@@ -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);