From b215169f2583e7e4d8d4babfebd036571372f416 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Tue, 26 Nov 2024 11:06:45 +0800 Subject: [PATCH] FIX: wrong default value for ext printable height The length of default value for extruder printable height should be same with extruder printable area jira:NONE Signed-off-by: xun.zhang Change-Id: I01bf5e2a9ddb2faadbbe0a01f4ff2c5582b8ac45 (cherry picked from commit 01bb0c6d661f1d72448782523fb612b2aabfec00) --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 1a9a82a30a..6c81a7adda 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -655,7 +655,7 @@ void PrintConfigDef::init_common_params() def->min = 0; def->max = 1000; def->mode = comSimple; - def->set_default_value(new ConfigOptionFloatsNullable{100.0, 200.0}); + def->set_default_value(new ConfigOptionFloatsNullable{}); def = this->add("preferred_orientation", coFloat); def->label = L("Preferred orientation");