mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-15 08:59:39 -07:00
Fix nozzle target temp display
This commit is contained in:
parent
05a0703120
commit
54d6f9f0de
1 changed files with 1 additions and 1 deletions
|
|
@ -3438,7 +3438,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
|
|||
if (jj.contains("nozzle_target_temper")) {
|
||||
if (jj["nozzle_target_temper"].is_number()) {
|
||||
if (m_extder_data.extders.size() == 1) {
|
||||
m_extder_data.extders[0].target_temp = jj["nozzle_temper"].get<float>();
|
||||
m_extder_data.extders[0].target_temp = jj["nozzle_target_temper"].get<float>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue