From bfcd9f3c299b84ae94e1d522865f97da295c38aa Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 29 Apr 2019 16:53:16 +0200 Subject: [PATCH] Fix for unregistered scaling correction values. --- src/libslic3r/PrintConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index a143051e0f..3e1fc5c3d9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2266,7 +2266,7 @@ void PrintConfigDef::init_sla_params() def->tooltip = L("Printer scaling correction"); def->min = 0; def->mode = comExpert; - def->default_value = new ConfigOptionFloats( { 1., 1., 1. } ); + def->default_value = new ConfigOptionFloats( { 1., 1. } ); def = this->add("absolute_correction", coFloat); def->label = L("Printer absolute correction"); @@ -2323,7 +2323,7 @@ void PrintConfigDef::init_sla_params() def->tooltip = L("Correction for expansion"); def->min = 0; def->mode = comExpert; - def->default_value = new ConfigOptionFloats( { 1. , 1., 1. } ); + def->default_value = new ConfigOptionFloats( { 1. , 1. } ); def = this->add("material_notes", coString); def->label = L("SLA print material notes");