mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-28 02:10:30 -07:00
FIX:fixed the incorrect upper limit of bed temperature
jira:[STUDIO-8650] Change-Id: Ib9270caa57f4ce63f0ac1a0ace5c2a51b3b6fc14 (cherry picked from commit 7ff9b96837d29bfed1ca21b448332feafa3a96a7)
This commit is contained in:
parent
b48d0861b7
commit
40e53b587c
1 changed files with 1 additions and 1 deletions
|
|
@ -5703,7 +5703,7 @@ void MachineObject::parse_new_info(json print)
|
|||
is_support_agora = get_flag_bits(fun, 1);
|
||||
if (is_support_agora) is_support_tunnel_mqtt = false;
|
||||
|
||||
is_220V_voltage = get_flag_bits(fun, 3) == 0?false:true;
|
||||
is_220V_voltage = get_flag_bits(fun, 2) == 0?false:true;
|
||||
is_support_flow_calibration = get_flag_bits(fun, 6);
|
||||
is_support_pa_calibration = get_flag_bits(fun, 7);
|
||||
is_support_prompt_sound = get_flag_bits(fun, 8);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue