diff --git a/resources/printers/BL-P001.json b/resources/printers/BL-P001.json index 795e4bb3ca..0d7173a2aa 100644 --- a/resources/printers/BL-P001.json +++ b/resources/printers/BL-P001.json @@ -50,7 +50,7 @@ "model_id": "BL-P001", "compatible_machine": [ "BL-P002", "C11", "C12", "C13" ], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "printer_type": "3DPrinter-X1-Carbon", "printer_thumbnail_image": "printer_thumbnail", "printer_connect_help_image": "input_access_code_x1", diff --git a/resources/printers/BL-P002.json b/resources/printers/BL-P002.json index d9309ea7ce..913b28a57c 100644 --- a/resources/printers/BL-P002.json +++ b/resources/printers/BL-P002.json @@ -52,7 +52,7 @@ "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], "printer_type": "3DPrinter-X1", "printer_thumbnail_image": "printer_thumbnail", - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "printer_connect_help_image": "input_access_code_x1", "printer_use_ams_image": "ams_icon", "printer_ext_image": ["ext_image_xp"], diff --git a/resources/printers/C11.json b/resources/printers/C11.json index cc616cb97a..2e69f66105 100644 --- a/resources/printers/C11.json +++ b/resources/printers/C11.json @@ -43,7 +43,7 @@ "bed_temperature_limit": 100 }, "model_id": "C11", - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "compatible_machine": [ "BL-P001", "BL-P002", "C12", "C13" ], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], "printer_type": "C11", diff --git a/resources/printers/C12.json b/resources/printers/C12.json index a9fa87f311..bc0599937c 100644 --- a/resources/printers/C12.json +++ b/resources/printers/C12.json @@ -43,7 +43,7 @@ "bed_temperature_limit": 100 }, "model_id": "C12", - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "compatible_machine": [ "BL-P001", "BL-P002", "C11", "C13" ], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], "printer_type": "C12", diff --git a/resources/printers/C13.json b/resources/printers/C13.json index cbed61d686..974781f36c 100644 --- a/resources/printers/C13.json +++ b/resources/printers/C13.json @@ -52,7 +52,7 @@ "nozzle_max_temperature": 320 }, "model_id": "C13", - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "compatible_machine": [ "BL-P001", "BL-P002", "C11", "C12" ], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], "printer_type": "C13", diff --git a/resources/printers/N1.json b/resources/printers/N1.json index 9f0a843219..6899b2f77a 100644 --- a/resources/printers/N1.json +++ b/resources/printers/N1.json @@ -43,7 +43,7 @@ "bed_temperature_limit": 80 }, "model_id": "N1", - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "compatible_machine": [], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], "printer_type": "N1", diff --git a/resources/printers/N2S.json b/resources/printers/N2S.json index be4322b152..5c331bc36f 100644 --- a/resources/printers/N2S.json +++ b/resources/printers/N2S.json @@ -45,7 +45,7 @@ "model_id": "N2S", "compatible_machine": [], "auto_cali_not_support_filaments": [ "GFU03", "GFU04" ], - "support_wrapping_deteciton": false, + "support_wrapping_detection": false, "printer_type": "N2S", "ftp_folder": "sdcard/", "printer_thumbnail_image": "printer_thumbnail_n2s", diff --git a/resources/printers/O1D.json b/resources/printers/O1D.json index 9f8b860a0f..5a9de409f2 100644 --- a/resources/printers/O1D.json +++ b/resources/printers/O1D.json @@ -61,7 +61,7 @@ "support_user_preset": false }, "model_id": "O1D", - "support_wrapping_deteciton": true, + "support_wrapping_detection": true, "printer_modes": [ "fdm", "laser", "cut" ], "compatible_machine": ["O1E"], "printer_type": "O1D", diff --git a/resources/printers/O1E.json b/resources/printers/O1E.json index 5072fe3750..0b1f712c54 100644 --- a/resources/printers/O1E.json +++ b/resources/printers/O1E.json @@ -61,6 +61,7 @@ "support_user_preset": false }, "model_id": "O1E", + "support_wrapping_detection": true, "printer_modes": [ "fdm", "laser", "cut" ], "compatible_machine": ["O1D"], "printer_type": "O1E", diff --git a/src/slic3r/GUI/DeviceCore/DevConfigUtil.h b/src/slic3r/GUI/DeviceCore/DevConfigUtil.h index f79401fef1..33d4d0b260 100644 --- a/src/slic3r/GUI/DeviceCore/DevConfigUtil.h +++ b/src/slic3r/GUI/DeviceCore/DevConfigUtil.h @@ -73,7 +73,7 @@ public: static std::vector get_unsupport_auto_cali_filaments(std::string type_str) { return get_value_from_config>(type_str, "auto_cali_not_support_filaments"); } /*detection*/ - static bool support_wrapping_detection(const std::string& type_str) { return get_value_from_config(type_str, "support_wrapping_deteciton"); } + static bool support_wrapping_detection(const std::string& type_str) { return get_value_from_config(type_str, "support_wrapping_detection"); } public: template