From 7ff9b96837d29bfed1ca21b448332feafa3a96a7 Mon Sep 17 00:00:00 2001 From: tao wang Date: Sat, 21 Dec 2024 17:44:17 +0800 Subject: [PATCH] FIX:fixed the incorrect upper limit of bed temperature jira:[STUDIO-8650] Change-Id: Ib9270caa57f4ce63f0ac1a0ace5c2a51b3b6fc14 --- src/slic3r/GUI/DeviceManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index b4da51281..eb4de117b 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -5639,7 +5639,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);