Fixed error in last commit preventing compilation

This commit is contained in:
Alessandro Ranellucci 2017-05-09 23:54:05 +02:00
parent a06b11db8e
commit 97cf94c694

View File

@ -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";