Fix of Command line slicing bad gcode #5029
SL1 file was exported with a .gcode suffix if the user did not provide output file name for SLA command line slicing.
This commit is contained in:
parent
598ac290a1
commit
c7586e5713
2 changed files with 10 additions and 2 deletions
src/libslic3r/GCode
|
@ -182,8 +182,10 @@ namespace Slic3r {
|
|||
void run_post_process_scripts(const std::string &path, const DynamicPrintConfig &config)
|
||||
{
|
||||
const auto* post_process = config.opt<ConfigOptionStrings>("post_process");
|
||||
assert(post_process);
|
||||
if (post_process->values.empty())
|
||||
if (// likely running in SLA mode
|
||||
post_process == nullptr ||
|
||||
// no post-processing script
|
||||
post_process->values.empty())
|
||||
return;
|
||||
|
||||
// Store print configuration into environment variables.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue