From 062236d3006ea62e767ef45166f2bda16795ec54 Mon Sep 17 00:00:00 2001 From: "salt.wei" Date: Mon, 9 Jan 2023 20:28:04 +0800 Subject: [PATCH] ENH: remove bed temperature check This is useless now. Remove. Signed-off-by: salt.wei Change-Id: Id9a5e7822b19a74bf35670d5913214467b5a90ac (cherry picked from commit 52580e16098ffb5386501d58d607c188861c96f2) --- src/slic3r/GUI/Tab.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 16cb034e2..7c4d1ab11 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2554,7 +2554,7 @@ void TabFilament::build() DynamicPrintConfig& filament_config = wxGetApp().preset_bundle->filaments.get_edited_preset().config; update_dirty(); - if (opt_key == "cool_plate_temp" || opt_key == "cool_plate_temp_initial_layer") { + /*if (opt_key == "cool_plate_temp" || opt_key == "cool_plate_temp_initial_layer") { m_config_manipulation.check_bed_temperature_difference(BedType::btPC, &filament_config); } else if (opt_key == "eng_plate_temp" || opt_key == "eng_plate_temp_initial_layer") { @@ -2566,7 +2566,7 @@ void TabFilament::build() else if (opt_key == "textured_plate_temp" || opt_key == "textured_plate_temp_initial_layer") { m_config_manipulation.check_bed_temperature_difference(BedType::btPTE, &filament_config); } - else if (opt_key == "nozzle_temperature") { + else */if (opt_key == "nozzle_temperature") { m_config_manipulation.check_nozzle_temperature_range(&filament_config); } else if (opt_key == "nozzle_temperature_initial_layer") {