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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-04-14 09:26:10 +0300
committerbubnikv <bubnikv@gmail.com>2019-04-14 09:26:10 +0300
commite4162bbee90a872267a9da1554329708cbd824ca (patch)
tree33b436a633e8149fdddeea5b4870d4d238b7e628
parent255a4e05dca6b227c7880ae369823e2c92990d1d (diff)
When loading a 3MF with advanced data, switch to an Advanced mode, not
Export moe.
-rw-r--r--src/slic3r/GUI/Plater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index 646a2ee64..cb14d9fe5 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -1649,11 +1649,11 @@ std::vector<size_t> Plater::priv::load_files(const std::vector<fs::path>& input_
if (advanced)
{
- wxMessageDialog dlg(q, _(L("This file cannot be loaded in simple mode. Do you want to switch to expert mode?\n")),
+ wxMessageDialog dlg(q, _(L("This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?\n")),
_(L("Detected advanced data")), wxICON_WARNING | wxYES | wxNO);
if (dlg.ShowModal() == wxID_YES)
{
- Slic3r::GUI::wxGetApp().save_mode(comExpert);
+ Slic3r::GUI::wxGetApp().save_mode(comAdvanced);
view3D->set_as_dirty();
}
else