From c596c05765f07b8984a1e2af431c545f4bda3a88 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 17 Jul 2018 20:37:15 +0200 Subject: [PATCH] With the Marlin flavor, a "machine envelope limits" G-code section is emitted, which breaks some of the automatic tests. Changed the default firmware flavor to RepRap, so that the automatic tests will run. --- xs/src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 739d597cd..7064e19fe 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -772,7 +772,7 @@ PrintConfigDef::PrintConfigDef() def->enum_labels.push_back("Machinekit"); def->enum_labels.push_back("Smoothie"); def->enum_labels.push_back(L("No extrusion")); - def->default_value = new ConfigOptionEnum(gcfMarlin); + def->default_value = new ConfigOptionEnum(gcfRepRap); def = this->add("infill_acceleration", coFloat); def->label = L("Infill");