ENH: extruder printable area default to be empty

jira:NONE

Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: If4aad7329cd97141eaec3e438dee165e86536c66
This commit is contained in:
xun.zhang 2024-08-30 19:19:38 +08:00 committed by lane.wei
parent 8cf72ab46c
commit 68ed20dd09
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ void PrintConfigDef::init_common_params()
def->label = L("Extruder printable area");
def->mode = comAdvanced;
def->gui_type = ConfigOptionDef::GUIType::one_string;
def->set_default_value(new ConfigOptionPointsGroups{ { Vec2d(0, 0), Vec2d(200, 0), Vec2d(200, 200), Vec2d(0, 200) } });
def->set_default_value(new ConfigOptionPointsGroups{ {} });
//BBS: add "bed_exclude_area"
def = this->add("bed_exclude_area", coPoints);