diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index d11db7d43..33f4bf36a 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -435,7 +435,7 @@ void Field::get_value_by_opt_type(wxString& str, const bool check_value/* = true wxString y_str = thumbnail.GetNextToken(); if (y_str.ToDouble(&y) && !thumbnail.HasMoreTokens()) { if (m_opt_id == "bed_exclude_area") { - if (0 <= x && x <= 256 && 0 <= y && y <= 256) { + if (0 <= x && x <= 350 && 0 <= y && y <= 350) { out_values.push_back(Vec2d(x, y)); continue; } diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 3feb05709..3327396a0 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -4415,7 +4415,6 @@ void TabPrinter::toggle_options() toggle_option("support_chamber_temp_control",!is_BBL_printer); toggle_option("use_firmware_retraction", !is_BBL_printer); toggle_option("support_air_filtration",is_BBL_printer); - toggle_option("bed_exclude_area", !is_BBL_printer); auto flavor = m_config->option>("gcode_flavor")->value; bool is_marlin_flavor = flavor == gcfMarlinLegacy || flavor == gcfMarlinFirmware; // Disable silent mode for non-marlin firmwares.