ENH: config: set default 'extruder_printable_area' to empty

JIRA: no-jira
Change-Id: I5d574a12684281faabbd1cf96e68e9b9ad593edc
(cherry picked from commit 2d791aea17bc6607d68df4f88c8481f5a8aa139e)
This commit is contained in:
lane.wei 2024-09-02 17:58:09 +08:00 committed by Noisyfox
parent 45bf4a99f1
commit c4adf70e45

View file

@ -634,7 +634,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);