From 6680fdffe4d25376c8f4c288ccf2b475d1b7e082 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Tue, 20 May 2025 09:15:08 +0800 Subject: [PATCH] FIX: error printable filament check for H2D jira: STUDIO-12252 Change-Id: Iea8107d29b3ae46c49a04a30046573b1c8b6e97f --- src/slic3r/GUI/DeviceManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index b389ec7cb..d84d3e3c7 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -328,6 +328,7 @@ bool check_filaments_printable(const std::string &tag_vendor, const std::string for (int index = 0; index < physical_extruder_maps.size(); ++index) { if (physical_extruder_maps[index] == extruder_idx) { extruder_idx = index; + break; } }