mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 02:22:17 +00:00
FIX: support set temp to 65 for some devices
jira: [STUDIO-9412] Change-Id: I530a8c18ae4b4133526b3e9d91153a7b26512f38 (cherry picked from commit c23f1233db2be6475a434de575fe93c9c08fae75)
This commit is contained in:
@@ -3230,6 +3230,13 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
||||
if (jj["support_chamber_temp_edit"].is_boolean()) {
|
||||
is_support_chamber_edit = jj["support_chamber_temp_edit"].get<bool>();
|
||||
}
|
||||
|
||||
const auto& support_champer_range = jj["support_chamber_temp_edit_range"];
|
||||
if (support_champer_range.is_array() && !support_champer_range.empty())
|
||||
{
|
||||
chamber_temp_edit_min = support_champer_range[0];
|
||||
chamber_temp_edit_max = support_champer_range[1];
|
||||
}
|
||||
}
|
||||
|
||||
if (jj.contains("support_extrusion_cali")) {
|
||||
|
||||
Reference in New Issue
Block a user