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 Bubnik <bubnikv@gmail.com>2020-09-24 20:03:09 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2020-09-24 20:03:33 +0300
commit7a799be426d00c70fe181efb454065925f87c34a (patch)
treed8d01312ea3baffd83a9df604ddad50427665b4e /src/PrusaSlicer.cpp
parent8f04a76337d8b29c375fb4b8de240bcd6e8e279d (diff)
DynamicPrintConfig::normalize() renamed to normalize_fdm(),
optimization of Print::apply()
Diffstat (limited to 'src/PrusaSlicer.cpp')
-rw-r--r--src/PrusaSlicer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PrusaSlicer.cpp b/src/PrusaSlicer.cpp
index a12ad8bb7..d79196cfa 100644
--- a/src/PrusaSlicer.cpp
+++ b/src/PrusaSlicer.cpp
@@ -93,7 +93,7 @@ int CLI::run(int argc, char **argv)
return 1;
m_extra_config.apply(m_config, true);
- m_extra_config.normalize();
+ m_extra_config.normalize_fdm();
PrinterTechnology printer_technology = Slic3r::printer_technology(m_config);
@@ -129,7 +129,7 @@ int CLI::run(int argc, char **argv)
boost::nowide::cerr << "Error while reading config file: " << ex.what() << std::endl;
return 1;
}
- config.normalize();
+ config.normalize_fdm();
PrinterTechnology other_printer_technology = Slic3r::printer_technology(config);
if (printer_technology == ptUnknown) {
printer_technology = other_printer_technology;
@@ -196,7 +196,7 @@ int CLI::run(int argc, char **argv)
// (command line options override --load files)
m_print_config.apply(m_extra_config, true);
// Normalizing after importing the 3MFs / AMFs
- m_print_config.normalize();
+ m_print_config.normalize_fdm();
// Initialize full print configs for both the FFF and SLA technologies.
FullPrintConfig fff_print_config;