From 97cf94c694ad8a68f84160fd9fbee35f14595891 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 9 May 2017 23:54:05 +0200 Subject: [PATCH] Fixed error in last commit preventing compilation --- 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 ccf9ccc7e..ff206b1f5 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -590,7 +590,7 @@ PrintConfigDef::PrintConfigDef() def->min = 0; def->enum_values.push_back("0"); def->enum_labels.push_back("auto"); - def->default_value = new ConfigOptionFloatOrPercent(20); + def->default_value = new ConfigOptionFloatOrPercent(20, false); def = this->add("gcode_arcs", coBool); def->label = "Use native G-code arcs";