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
path: root/src
diff options
context:
space:
mode:
authorremi durand <remi-j.durand@thalesgroup.com>2021-06-16 08:34:27 +0300
committerremi durand <remi-j.durand@thalesgroup.com>2021-06-16 22:24:19 +0300
commit467b1feaa7a03434f75ce1c2ab9a58798710b576 (patch)
treea8b56e63358f23d00281b80bc9e56686e2a85f05 /src
parent7f232abce587e99d3f74beabe389064f11f09b6c (diff)
print the first filament start gocde even with start_gcode_manual
supermerill/SuperSlicer#1317
Diffstat (limited to 'src')
-rw-r--r--src/libslic3r/GCode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp
index 1a2fa9c96..10e788b7e 100644
--- a/src/libslic3r/GCode.cpp
+++ b/src/libslic3r/GCode.cpp
@@ -1368,7 +1368,7 @@ void GCode::_do_export(Print& print, FILE* file, ThumbnailsGeneratorCallback thu
m_seam_placer.init(print);
//activate first extruder is multi-extruder and not in start-gcode
- if ((initial_extruder_id != (uint16_t)-1) && !this->config().start_gcode_manual) {
+ if ((initial_extruder_id != (uint16_t)-1)) {
if (m_writer.multiple_extruders) {
//if not in gcode
bool find = false;