ENH: config: set default 'extruder_printable_area' to empty

JIRA: no-jira
Change-Id: I5d574a12684281faabbd1cf96e68e9b9ad593edc
This commit is contained in:
lane.wei 2024-09-02 17:58:09 +08:00
parent e5be69dedd
commit 2d791aea17
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{ {} });
def->set_default_value(new ConfigOptionPointsGroups{});
//BBS: add "bed_exclude_area"
def = this->add("bed_exclude_area", coPoints);