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:
authorVojtech Kral <vojtech@kral.hk>2018-06-06 11:52:19 +0300
committerVojtech Kral <vojtech@kral.hk>2018-06-07 16:41:36 +0300
commitaef0c489e31ad4916b5e93dfb7b17e0200184868 (patch)
tree14abdf2677966b5facd1215c8df1c1b1299da738 /xs/src/slic3r/GUI/PresetBundle.cpp
parent2e061994d4a602929658c453aaf32e13751eccc2 (diff)
Fix: Dialog initialization ordering on OS X
Perform update_check after MainFrame is created
Diffstat (limited to 'xs/src/slic3r/GUI/PresetBundle.cpp')
-rw-r--r--xs/src/slic3r/GUI/PresetBundle.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/slic3r/GUI/PresetBundle.cpp b/xs/src/slic3r/GUI/PresetBundle.cpp
index 98d351069..d36ef7b6f 100644
--- a/xs/src/slic3r/GUI/PresetBundle.cpp
+++ b/xs/src/slic3r/GUI/PresetBundle.cpp
@@ -101,6 +101,7 @@ PresetBundle::~PresetBundle()
void PresetBundle::reset(bool delete_files)
{
// Clear the existing presets, delete their respective files.
+ this->vendors.clear();
this->prints .reset(delete_files);
this->filaments.reset(delete_files);
this->printers .reset(delete_files);